:root {
  --blue-950: #061b3a;
  --blue-900: #082a5b;
  --blue-800: #0a3b78;
  --blue-700: #0f56a6;
  --blue-100: #eaf4ff;
  --cyan: #23b7ff;
  --gold: #d7a84f;
  --ink: #102033;
  --muted: #68758a;
  --line: #e6edf7;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 27, 58, .13);
  --radius: 24px;
  --font: "Be Vietnam Pro", "Montserrat", sans-serif;
  --motion-fast: 180ms;
  --motion-base: 280ms;
  --motion-enter: 520ms;
  --motion-ease: cubic-bezier(.2, .8, .2, 1);
  --hover-lift: -6px;
}

body.dark {
  --ink: #eef6ff;
  --muted: #a9bbd2;
  --line: rgba(255, 255, 255, .12);
  --soft: #0b1930;
  --white: #0f203a;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
  background: #071426;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(35, 183, 255, .12), transparent 34rem),
    linear-gradient(180deg, #f9fbff 0%, #eef5ff 45%, #fff 100%);
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(35, 183, 255, .45);
  outline-offset: 3px;
}

:where(a, button, .btn, .icon-btn, .pill, .product-chip, .product-check, .product-reset) {
  -webkit-tap-highlight-color: rgba(35, 183, 255, .14);
}

body.vf-motion-ready .vf-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity var(--motion-enter) var(--motion-ease),
    transform var(--motion-enter) var(--motion-ease);
  transition-delay: var(--vf-stagger, var(--stagger, 0ms));
  will-change: opacity, transform;
}

body.vf-motion-ready .vf-reveal[data-motion="left"] {
  transform: translate3d(-22px, 0, 0);
}

body.vf-motion-ready .vf-reveal[data-motion="right"] {
  transform: translate3d(22px, 0, 0);
}

body.vf-motion-ready .vf-reveal[data-motion="scale"] {
  transform: translate3d(0, 12px, 0) scale(.98);
}

body.vf-motion-ready .vf-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body.vf-motion-ready .vf-reveal.is-visible,
body.vf-motion-ready .vf-reveal.is-visible * {
  will-change: auto;
  /* margin: 0; */
  margin-bottom: 5px;
}

.container {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 48px 0;
}

.eyebrow {
  color: var(--blue-700);
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 34px;
}

.section-title {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -.05em;
}

.section-desc {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 650;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 86, 166, .25);
}

.btn.light {
  background: #fff;
  color: var(--blue-900);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .75);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.article-actions {
  display: flex;
  gap: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 59, 120, .08);
}

body.dark.page .site-header {
  background: rgba(7, 20, 38, .92);
  border-bottom-color: rgba(255, 255, 255, .1);
}

.topbar {
  background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
  color: #dbeeff;
  font-size: 13px;
}

.topbar .container,
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar .container {
  min-height: 36px;
}

.nav-wrap {
  width: min(1290px, calc(100vw - 140px));
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  color: var(--blue-950);
}

body.dark .brand {
  color: #fff;
}

body.dark .brand img {
  filter: brightness(0) invert(1);
}

.brand img {
  width: 186px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu>a,
.nav-menu>button {
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 28px 10px;
  font-weight: 650;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

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

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  padding: 0;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}

.icon-btn i {
  display: block;
  line-height: 1;
}

.menu-toggle {
  display: none;
}

.mega-menu {
  --mega-menu-max-height: min(620px, calc(100vh - 128px));
  --mega-panel-max-height: min(540px, calc(100vh - 180px));
  --mega-tabs-max-height: min(430px, calc(100vh - 220px));
  --mega-scroll-track: rgba(226, 234, 244, .88);
  --mega-scroll-thumb: #2f63b8;
  --mega-scroll-thumb-hover: #0f56a6;
  --mega-scroll-border: rgba(255, 255, 255, .88);
  position: absolute;
  left: 50%;
  top: 110px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 26px;
  max-height: var(--mega-menu-max-height);
  overflow: hidden;
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: stretch;
  max-height: var(--mega-panel-max-height);
  min-height: 0;
}

.mega-categories {
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mega-categories h3 {
  margin: 8px 0 16px;
}

.mega-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 0;
  max-height: var(--mega-tabs-max-height);
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  padding-right: 14px;
  padding-bottom: 8px;
  margin-right: -10px;
  scrollbar-gutter: stable;
  box-shadow: inset -10px 0 0 rgba(30, 115, 190, .07);
}

.mega-tab {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  padding: 12px 16px;
  cursor: pointer;
  text-align: left;
  font-weight: 650;
  transition: .25s ease;
}

.mega-tab:hover {
  transform: translateX(5px);
  border-color: rgba(30, 115, 190, .45);
}

.mega-tab.active {
  background: var(--blue-900);
  color: #fff;
  box-shadow: 0 14px 24px rgba(15, 86, 166, .22);
}

.mega-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: max-content;
  gap: 14px;
  align-content: start;
  min-height: 0;
  max-height: var(--mega-panel-max-height);
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  padding: 6px 14px 10px 0;
  scrollbar-gutter: stable;
  box-shadow: inset -10px 0 0 rgba(30, 115, 190, .07), inset 0 -22px 18px -24px rgba(6, 27, 58, .55);
}

.mega-menu,
.mega-tabs,
.mega-products {
  scrollbar-width: thin;
  scrollbar-color: var(--mega-scroll-thumb) var(--mega-scroll-track);
}

.mega-menu::-webkit-scrollbar,
.mega-tabs::-webkit-scrollbar,
.mega-products::-webkit-scrollbar {
  display: block;
  width: 10px;
  height: 10px;
}

.mega-menu::-webkit-scrollbar-track,
.mega-tabs::-webkit-scrollbar-track,
.mega-products::-webkit-scrollbar-track {
  background: var(--mega-scroll-track);
  border-radius: 999px;
}

.mega-menu::-webkit-scrollbar-thumb,
.mega-tabs::-webkit-scrollbar-thumb,
.mega-products::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--mega-scroll-thumb), var(--mega-scroll-thumb-hover));
  border: 2px solid var(--mega-scroll-border);
  border-radius: 999px;
}

.mega-menu::-webkit-scrollbar-thumb:hover,
.mega-tabs::-webkit-scrollbar-thumb:hover,
.mega-products::-webkit-scrollbar-thumb:hover {
  background: var(--mega-scroll-thumb-hover);
}

.mega-car {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, var(--white), var(--soft));
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), border-color .28s ease, box-shadow .28s ease;
  position: relative;
  overflow: hidden;
}

.mega-car::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .7) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: .62s ease;
}

.mega-car:hover,
.mega-car.active {
  transform: translateY(-6px);
  border-color: rgba(15, 86, 166, .45);
  box-shadow: 0 18px 34px rgba(6, 27, 58, .11);
}

.mega-car:hover::after {
  transform: translateX(120%);
}

.mega-car img {
  height: 92px;
  object-fit: contain;
  margin: auto;
  transition: transform .28s ease;
}

.mega-car:hover img {
  transform: scale(1.08) translateY(-3px);
}

.mega-car span {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mega-car strong {
  display: block;
  margin-top: 4px;
}

.mega-car p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.mega-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 160px;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  font-weight: 650;
  text-align: center;
}

.mega-preview {
  border-radius: 24px;
  background: linear-gradient(135deg, #061b3a, #0f56a6);
  color: #fff;
  padding: 22px;
  min-height: min(360px, var(--mega-panel-max-height));
  max-height: var(--mega-panel-max-height);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.mega-preview::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  pointer-events: none;
}

.mega-preview h3 {
  margin: 8px 0 10px;
}

.mega-preview p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.65;
}

.mega-preview img {
  position: relative;
  width: 100%;
  max-height: 240px;
  max-width: none;
  margin-left: 0;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .35));
}

.mega-preview.is-changing img {
  animation: previewCarIn .42s ease both;
}

.mega-preview-actions {
  display: flex;
  gap: 10px;
  /* flex-wrap: wrap; */
  position: relative;
  z-index: 2;
}

.mega-preview-actions .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .1);
}

.mega-experience-menu {
  display: grid;
  gap: 8px;
}

.mega-experience-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mega-experience-tab i {
  font-size: 12px;
  transition: transform .2s ease;
}

.mega-experience-menu.open .mega-experience-tab i {
  transform: rotate(180deg);
}

.mega-experience-panel {
  padding: 0 0 4px;
}

.mega-experience-panel[hidden] {
  display: none;
}

.mega-experience-list {
  display: grid;
  gap: 5px;
}

.mega-experience-list a {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 8px 5px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #202a36;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.15;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
}

.mega-experience-list a:hover,
.mega-experience-list a:focus-visible {
  color: var(--blue-700);
  border-color: rgba(15, 86, 166, .22);
  box-shadow: 0 10px 20px rgba(6, 27, 58, .09);
  transform: translateX(4px);
}

.mega-experience-arrow {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  border: 1px solid rgba(16, 32, 51, .1);
  border-radius: 50%;
  color: #202a36;
  background: #fff;
  transition: transform .22s ease, color .22s ease, border-color .22s ease;
}

.mega-experience-list a:hover .mega-experience-arrow,
.mega-experience-list a:focus-visible .mega-experience-arrow {
  color: var(--blue-700);
  border-color: rgba(15, 86, 166, .26);
  transform: translateX(3px);
}

body.dark .mega-menu {
  --mega-scroll-track: rgba(255, 255, 255, .12);
  --mega-scroll-thumb: #58a6ff;
  --mega-scroll-thumb-hover: #23b7ff;
  --mega-scroll-border: rgba(7, 20, 38, .9);
}

body.dark .mega-tabs,
body.dark .mega-products {
  box-shadow: inset -10px 0 0 rgba(88, 166, 255, .1), inset 0 -22px 18px -24px rgba(0, 0, 0, .72);
}

body.dark .mega-experience-panel {
  background: transparent;
}

body.dark .mega-experience-list a,
body.dark .mega-experience-arrow {
  color: #eaf4ff;
}

body.dark .mega-experience-list a,
body.dark .mega-experience-arrow {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
}

body.dark .mega-experience-list a:hover,
body.dark .mega-experience-list a:focus-visible,
body.dark .mega-experience-list a:hover .mega-experience-arrow,
body.dark .mega-experience-list a:focus-visible .mega-experience-arrow {
  color: #9bd7ff;
  border-color: rgba(155, 215, 255, .34);
}

@supports (height: 100dvh) {
  .mega-menu {
    --mega-menu-max-height: min(620px, calc(100dvh - 128px));
    --mega-panel-max-height: min(540px, calc(100dvh - 180px));
    --mega-tabs-max-height: min(430px, calc(100dvh - 220px));
  }
}

@media (min-width: 1025px) and (max-width: 1280px),
(min-width: 1025px) and (max-height: 820px) {
  .mega-menu {
    --mega-menu-max-height: min(560px, calc(100vh - 124px));
    --mega-panel-max-height: min(500px, calc(100vh - 172px));
    --mega-tabs-max-height: min(390px, calc(100vh - 212px));
    width: min(1120px, calc(100vw - 24px));
    padding: 18px;
  }

  .mega-grid {
    grid-template-columns: 240px minmax(0, 1fr) 300px;
    gap: 18px;
  }

  .mega-preview {
    padding: 18px;
  }

  .mega-preview img {
    max-height: 190px;
  }
}

@supports (height: 100dvh) {
  @media (min-width: 1025px) and (max-width: 1280px),
  (min-width: 1025px) and (max-height: 820px) {
    .mega-menu {
      --mega-menu-max-height: min(560px, calc(100dvh - 124px));
      --mega-panel-max-height: min(500px, calc(100dvh - 172px));
      --mega-tabs-max-height: min(390px, calc(100dvh - 212px));
    }
  }
}

@media (min-width: 1025px) and (max-height: 680px) {
  .mega-menu {
    border-radius: 24px;
    padding: 20px;
  }

  .mega-grid {
    grid-template-columns: 230px minmax(0, 1fr) 300px;
    gap: 18px;
  }

  .mega-categories h3 {
    margin-bottom: 12px;
  }

  .mega-tab {
    border-radius: 14px;
    padding: 10px 14px;
  }

  .mega-car {
    border-radius: 18px;
    padding: 12px;
  }

  .mega-car img {
    height: 76px;
  }

  .mega-preview {
    border-radius: 20px;
    padding: 18px;
    gap: 10px;
    justify-content: flex-start;
  }

  .mega-preview h3 {
    font-size: 18px;
    margin: 6px 0;
  }

  .mega-preview p {
    line-height: 1.5;
  }

  .mega-preview img {
    width: 100%;
    max-height: 145px;
    margin-left: 0;
    object-fit: contain;
  }

  .mega-preview-actions {
    margin-top: auto;
  }

  .mega-preview-actions .btn {
    padding: 10px 14px;
  }

  .mega-experience-panel {
    padding: 0 0 4px;
  }

  .mega-experience-list {
    gap: 5px;
  }

  .mega-experience-list a {
    min-height: 34px;
    padding: 5px 8px 5px 11px;
    font-size: 11px;
  }

  .mega-experience-arrow {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
}

@media (min-width: 1025px) and (max-height: 520px) {

  .mega-preview .eyebrow,
  .mega-preview p {
    display: none;
  }

  .mega-preview h3 {
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
  }

  .mega-preview img {
    max-height: 96px;
  }

  .mega-preview-actions .btn {
    padding: 9px 14px;
    font-size: 13px;
  }
}

.hero {
  position: relative;
  min-height: 690px;
  color: #fff;
  overflow: hidden;
  background: #071426;
}

.hero .swiper,
.hero-slide {
  min-height: 690px;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 45, .78) 0%, rgba(4, 20, 45, .42) 42%, rgba(4, 20, 45, .08) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-top: 64px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: .95;
  letter-spacing: -.07em;
  margin: 14px 0 18px;
}

.hero p {
  color: #dcecff;
  line-height: 1.8;
  font-size: 18px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
  margin-top: 34px;
}

.hero-stat {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 16px;
}

.hero-stat strong {
  display: block;
  font-size: 26px;
}

.hero-stat span {
  color: #c7d9ef;
  font-size: 13px;
}

.quick-forms {
  position: relative;
  margin-top: -62px;
  z-index: 4;
}

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

.quick-card,
.card,
.product-card,
.news-card,
.price-card,
.form-panel {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

body.dark .quick-card,
body.dark .card,
body.dark .product-card,
body.dark .news-card,
body.dark .price-card,
body.dark .form-panel {
  background: rgba(15, 32, 58, .9);
}

.quick-card {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: .25s ease;
}

.quick-card:hover {
  transform: translateY(-6px);
}

.quick-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-100), #fff);
  color: var(--blue-700);
  font-size: 22px;
}

.quick-card strong {
  display: block;
}

.quick-card span {
  color: var(--muted);
  font-size: 13px;
}

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

.pill {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 650;
}

.pill.active {
  background: var(--blue-900);
  color: #fff;
  border-color: var(--blue-900);
}

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

.product-card {
  overflow: hidden;
  transition: .25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-media {
  min-height: 210px;
  background: linear-gradient(160deg, #f4f8ff, #e7f1ff);
  display: grid;
  place-items: center;
  padding: 24px;
}

body.dark .product-media {
  background: linear-gradient(160deg, #10233f, #08182f);
}

.product-media img {
  height: 155px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(6, 27, 58, .15));
}

.product-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 650;
}

.product-body h3 {
  margin: 14px 0 8px;
  font-size: 24px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.product-specs strong {
  color: var(--ink);
  display: block;
  font-size: 17px;
}

.price {
  color: var(--blue-700);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 460px;
}

.image-stack img:first-child {
  border-radius: 34px;
  box-shadow: var(--shadow);
  height: 430px;
  width: 88%;
  object-fit: cover;
}

.image-stack img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-line i {
  color: var(--blue-700);
  margin-top: 4px;
}

.vf-form-visual .feature-line {
  color: rgba(255, 255, 255, .86);
}

.vf-form-visual .feature-line i {
  color: #49bfff;
}

.banner {
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 20, 42, .82), rgba(5, 20, 42, .22));
}

.banner .container {
  position: relative;
  z-index: 1;
}

.banner h1 {
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -.06em;
  line-height: 1;
  margin: 12px 0;
  max-width: 760px;
}

.breadcrumb {
  color: #cae0ff;
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb strong {
  color: inherit;
  font: inherit;
}
.dark.com-san-pham .breadcrumb a,.dark.com-san-pham   .breadcrumb strong{
  color:#003c9f;
}
.breadcrumb span {
  color: rgba(202, 224, 255, .72);
}

.vf-page-hero .eyebrow {
  display: inline-flex;
  margin-top: 16px;
}

.toolbar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 126px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.filter-group {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: var(--muted);
}

.listing-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.select {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
}

.product-page {
  background:
    radial-gradient(circle at 16% 6%, rgba(35, 183, 255, .18), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #fff 34%, #f4f7fb 100%);
}

.product-hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(6, 27, 58, .92) 0 46%, rgba(10, 59, 120, .76) 46% 100%),
    url("../images/showroom-cars.png") center/cover no-repeat;
  color: #fff;
  position: relative;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -34% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 34px;
}

.product-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .96;
  letter-spacing: -.07em;
  max-width: 650px;
}

.product-hero p {
  color: #dcecff;
  line-height: 1.85;
  max-width: 620px;
}

.product-hero img {
  width: 112%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, .34));
  animation: previewCarIn .7s ease both;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.product-hero-actions .pill {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .26);
  backdrop-filter: blur(10px);
}

.product-hero-actions .pill:hover,
.product-hero-actions .pill.active {
  background: #fff;
  color: var(--blue-900);
}

.product-toolbar {
  grid-template-columns: 300px 1fr;
}

.product-filter {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .82)),
    radial-gradient(circle at top right, rgba(35, 183, 255, .12), transparent 16rem);
}

.product-filter h3 {
  margin: 8px 0 0;
  font-size: 28px;
  letter-spacing: -.04em;
}

.product-listing-head {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 14px 36px rgba(6, 27, 58, .07);
}

.product-listing-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.product-page .product-card {
  box-shadow: 0 18px 42px rgba(6, 27, 58, .09);
}

.product-page .product-card:hover {
  box-shadow: 0 28px 54px rgba(6, 27, 58, .15);
}

.product-filter-board {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(6, 27, 58, .09);
  padding: 26px;
  margin-bottom: 30px;
}

.product-filter-head,
.product-filter-footer,
.product-filter-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  align-items: center;
}

.product-filter-head {
  grid-template-columns: 1fr auto;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-filter-head h2 {
  margin: 8px 0 0;
  font-size: 32px;
  letter-spacing: -.045em;
}

.product-filter-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.product-filter-row>span {
  color: #31445b;
  font-weight: 650;
}

.product-chip-row,
.product-check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-chip,
.product-check,
.product-reset {
  border: 1px solid #dbe5f0;
  border-radius: 999px;
  background: #f7faff;
  color: #31445b;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 650;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.product-chip:hover,
.product-check:hover,
.product-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(15, 86, 166, .12);
}

.product-chip.active,
.product-check.active {
  background: #0b4fa3;
  color: #fff;
  border-color: #0b4fa3;
  box-shadow: 0 14px 28px rgba(15, 86, 166, .22);
}

.product-check.active i::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: 650;
}

.product-reset {
  background: #fff;
  color: var(--blue-700);
}

.product-filter-footer {
  padding-top: 18px;
  grid-template-columns: 1fr auto;
}

.product-result-grid {
  align-items: stretch;
}

.dothanh-style-products {
  background: #fff;
  color: #10131a;
}

.product-top-banner {
  height: 260px;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #eef1f5;
}

.product-banner-shape {
  position: absolute;
  top: 0;
  width: 26%;
  height: 100%;
  background: #262a78;
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
}

.product-banner-shape.left {
  left: 0;
}

.product-banner-shape.right {
  right: 0;
  transform: scaleX(-1);
}

.product-banner-cars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(8px, 3vw, 34px);
  width: min(850px, 80vw);
  margin-top: 18px;
}

.product-banner-cars img {
  max-height: 175px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .16));
}

.product-banner-cars img:nth-child(2) {
  max-height: 198px;
  transform: scale(1.08);
}

.product-title-block {
  padding: 30px 0 52px;
  text-align: center;
}

.product-title-line {
  display: inline-grid;
  grid-template-columns: 120px auto 120px;
  align-items: center;
  gap: 12px;
}

.product-title-line span {
  height: 1px;
  background: #d8dbe3;
  position: relative;
}

.product-title-line span::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  background: #d8dbe3;
  transform: rotate(45deg);
}

.product-title-line span:first-child::after {
  right: -8px;
}

.product-title-line span:last-child::after {
  left: -8px;
}

.product-title-line h1 {
  color: #282a78;
  margin: 0;
  font-size: 34px;
  font-weight: 650;
}

.product-title-line h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: #282a78;
  margin: 8px auto 0;
  box-shadow: 72px 0 0 #282a78;
}

.product-title-block p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #5c6675;
  line-height: 1.75;
}

.product-catalog-section {
  padding-top: 26px;
}

.product-filter-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-red {
  height: 44px;
  padding: 0 18px;
  border: 1px solid #f04b55;
  background: #fff;
  color: #f0323e;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
}

.product-filter-strip label {
  height: 44px;
  min-width: 158px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.product-filter-strip select {
  appearance: none;
  width: 100%;
  height: 44px;
  border: 1px solid #d9e0eb;
  border-radius: 999px;
  background: #fff;
  color: #334056;
  padding: 0 38px 0 18px;
  cursor: pointer;
  font-weight: 650;
  outline: 0;
}

.product-filter-strip label i {
  position: absolute;
  right: 16px;
  color: #5c6675;
  font-size: 12px;
  pointer-events: none;
}

.product-filter-strip strong {
  margin-left: auto;
  color: #324057;
  font-size: 15px;
}

.product-family {
  margin-bottom: 44px;
}

.product-family h2 {
  margin: 0 0 22px;
  font-size: 36px;
  line-height: 1.1;
  color: #111;
  letter-spacing: -.035em;
}

.vf-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vf-product-card {
  border: 1px solid #dde3ed;
  border-radius: 8px;
  background: #fff;
  min-height: 482px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(16, 34, 58, .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.vf-product-card:hover {
  transform: translateY(-6px);
  border-color: #cbd6e6;
  box-shadow: 0 20px 42px rgba(16, 34, 58, .11);
}

.vf-product-media {
  height: 170px;
  display: grid;
  place-items: center;
  padding: 18px 18px 0;
  position: relative;
}

.vf-product-media img {
  max-height: 136px;
  object-fit: contain;
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, .11));
  transition: transform .25s ease;
}

.vf-product-card:hover .vf-product-media img {
  transform: scale(1.06) translateY(-4px);
}

.vf-new-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  background: #d92332;
  color: #fff;
  border-radius: 2px;
  padding: 6px 7px;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.vf-product-info {
  padding: 10px 13px 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.vf-product-info h3 {
  margin: 4px 0 18px;
  text-align: center;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1.35;
}

.vf-card-spec {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  background: #eef4ff;
  color: #26384f;
  padding: 11px 14px;
  margin-bottom: 10px;
  font-size: 14px;
}

.vf-card-spec:nth-of-type(even) {
  background: #f2f5fa;
}

.vf-card-spec strong {
  font-weight: 650;
}

.vf-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 2px 0 14px;
}

.vf-card-tags span {
  border: 1px solid #1e83ff;
  color: #0068db;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 650;
}

.vf-product-info p {
  margin: auto 0 14px;
  color: #3f4c5e;
  line-height: 1.55;
}

.vf-product-actions {
  display: flex;
  gap: 8px;
}

.vf-product-actions a {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #d9e0eb;
  padding: 9px 8px;
  color: #26384f;
  font-size: 13px;
  font-weight: 650;
}

.vf-product-actions a:first-child {
  background: #0b4fa3;
  border-color: #0b4fa3;
  color: #fff;
}

.empty-state {
  border: 1px dashed #cbd6e6;
  border-radius: 12px;
  padding: 34px;
  text-align: center;
  color: #667386;
  font-weight: 650;
}

.cellphone-products {
  background: #f6f8fc;
  color: #111827;
}

.cellphone-product-hero {
  background:
    radial-gradient(circle at 86% 30%, rgba(30, 115, 190, .14), transparent 24rem),
    linear-gradient(180deg, #fff, #f3f7fd);
  border-bottom: 1px solid #e6edf7;
}

.cellphone-product-hero .container {
  min-height: 310px;
  display: grid;
  grid-template-columns: 1fr .62fr;
  gap: 30px;
  align-items: center;
}

.cellphone-product-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.065em;
}

.cellphone-product-hero p {
  max-width: 680px;
  color: #5f6e80;
  line-height: 1.8;
}

.cellphone-product-hero img {
  width: 110%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .16));
}

.cellphone-product-section {
  padding-top: 38px;
}

.cellphone-filter-shell {
  position: relative;
  z-index: 8;
}

body.filter-open .cellphone-filter-shell {
  z-index: 1000;
}

.cellphone-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.cell-filter-pill {
  border: 1px solid #d7dfed;
  background: #fff;
  color: #2f3b4f;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  box-shadow: 0 10px 26px rgba(18, 36, 63, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease;
}

.cell-filter-pill:hover,
.cell-filter-pill[aria-expanded="true"] {
  transform: translateY(-2px);
  border-color: #ff3048;
  color: #ff3048;
  box-shadow: 0 16px 30px rgba(255, 48, 72, .12);
}

.cell-filter-pill.has-active,
.cell-filter-pill.filter-main.has-active {
  border-color: #ff3048;
  color: #ff3048;
  box-shadow: 0 16px 30px rgba(255, 48, 72, .12);
}

.cell-filter-count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: #ff3048;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.cell-filter-count.is-hidden {
  display: none;
}

.cell-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 20px;
}

.cell-active-filters.is-empty {
  display: none;
}

.cell-active-filter {
  border: 1px solid rgba(255, 48, 72, .28);
  border-radius: 999px;
  background: #fff7f8;
  color: #d9233b;
  min-height: 38px;
  padding: 0 12px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 10px 24px rgba(255, 48, 72, .08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cell-active-filter strong {
  font-weight: 950;
}

.cell-active-filter i {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff3048;
  color: #fff;
  font-size: 11px;
}

.cell-active-filter:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 48, 72, .55);
  box-shadow: 0 16px 30px rgba(255, 48, 72, .13);
}

.cell-filter-popover {
  position: absolute;
  left: 210px;
  top: 66px;
  width: min(720px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid #e1e7f0;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(18, 36, 63, .16);
  padding: 28px 32px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(.98);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  display: none;
}

.cell-filter-popover.open {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  z-index: 10050 !important;
}

.cell-filter-panel-head {
  display: none;
}

.cell-filter-group {
  margin-bottom: 26px;
}

.cell-filter-group.is-hidden {
  display: none;
}

.cell-filter-group h3 {
  margin: 0 0 14px;
  font-size: 18px;
  color: #111827;
}

.cell-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cell-filter-options button {
  border: 1px solid #d8e0ee;
  border-radius: 999px;
  background: #f8fbff;
  color: #314057;
  padding: 13px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cell-filter-options button.active {
  background: #eef5ff;
  color: #1f6fff;
  border-color: #6aa2ff;
  box-shadow: 0 10px 22px rgba(31, 111, 255, .12);
}

.cell-filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cell-filter-actions button {
  min-height: 58px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
}

.cell-filter-close {
  background: #fff;
  color: #314057;
  border: 1px solid #d8e0ee;
}

.cell-filter-apply {
  background: linear-gradient(135deg, #ff3048, #f52b45);
  color: #fff;
  border: 0;
}

.cell-filter-backdrop {
  display: none;
}

.cell-sort-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid #edf1f6;
  border-radius: 22px;
  padding: 18px 22px;
  margin: 18px 0 26px;
  box-shadow: 0 14px 32px rgba(18, 36, 63, .06);
}

.cell-sort-panel h2 {
  margin: 0;
  font-size: 18px;
  white-space: nowrap;
}

.cell-sort-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cell-sort-tabs button {
  border: 1px solid #d8dce5;
  background: #f7f7f8;
  color: #2d2d2d;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
}

.cell-sort-tabs button.active {
  background: #eef5ff;
  color: #2e7bff;
  border-color: #2e7bff;
}

.cell-result-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin: 0 0 24px;
}

.cell-result-head h2 {
  margin: 8px 0 0;
  font-size: 32px;
  letter-spacing: -.04em;
}

.cell-result-head strong {
  color: #5f6e80;
}

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

.product-empty {
  grid-column: 1 / -1;
  background: #fff;
}

.shop-shell {
  background: #f5f7fb;
  color: #111;
}

.shop-hero {
  background:
    linear-gradient(90deg, rgba(2, 21, 46, .86), rgba(2, 21, 46, .22)),
    url("../images/service-bay.jpg") center/cover no-repeat;
  color: #fff;
}

.shop-hero .container {
  min-height: 420px;
  display: grid;
  align-content: center;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

.shop-sidebar,
.shop-toolbar,
.shop-mini-cart {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(12, 34, 62, .08);
}

.shop-sidebar {
  position: sticky;
  top: 124px;
  padding: 20px;
}

.shop-sidebar h3 {
  margin: 6px 0 18px;
}

.shop-category {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #435164;
  font-weight: 650;
  cursor: pointer;
  border-bottom: 1px solid #edf1f5;
}

.shop-category:hover,
.shop-category.active {
  color: #1e73be;
}

.shop-category-heading {
  cursor: default;
  pointer-events: none;
}

.shop-main {
  display: grid;
  gap: 18px;
}

.shop-toolbar {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

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

.shop-card {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(12, 34, 62, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.shop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 115, 190, .32);
  box-shadow: 0 26px 44px rgba(12, 34, 62, .12);
}

.shop-media {
  height: 230px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff, #eef4fb);
  padding: 20px;
}

.shop-media img {
  max-height: 170px;
  object-fit: contain;
  transition: transform .32s ease;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .12));
}

.shop-card:hover .shop-media img {
  transform: scale(1.08) translateY(-6px);
}

.shop-body {
  padding: 18px;
}

.shop-body h3 {
  min-height: 58px;
  margin: 12px 0;
  font-size: 17px;
  line-height: 1.45;
}

.shop-mini-cart {
  margin-top: 18px;
  padding: 16px;
  color: #5e6b7c;
}

.cart-pill {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #1e73be;
  color: #fff;
  font-weight: 650;
}

.vf-shop-page {
  background: #f6f7f9;
}

.vf-shop-top {
  background: #fff;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #e7ebf0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.vf-shop-top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .72), rgba(255, 255, 255, .24)),
    radial-gradient(circle at 82% 40%, rgba(30, 115, 190, .18), transparent 22rem);
}

.vf-shop-top .container {
  min-height: 230px;
  display: grid;
  align-content: center;
}

.vf-shop-top .breadcrumb {
  color: #6b7684;
  margin-bottom: 18px;
}

.vf-shop-top h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.055em;
  color: #171b22;
}

.vf-shop-top p {
  max-width: 720px;
  color: #667386;
  line-height: 1.75;
}

.vf-shop-sidebar {
  border-radius: 0;
  box-shadow: none;
  border-color: #e1e5eb;
}

.shop-sidebar-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf1f5;
  margin-bottom: 6px;
  color: #1b2430;
  font-weight: 650;
  text-transform: uppercase;
  font-size: 14px;
}

.shop-subcategory {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #edf1f5;
  background: transparent;
  padding: 11px 0 11px 18px;
  text-align: left;
  color: #697789;
  font-weight: 650;
  cursor: pointer;
}

.shop-subcategory:hover,
.shop-subcategory.active {
  color: #1e73be;
}

.vf-shop-toolbar {
  border-radius: 0;
  box-shadow: none;
}

.vf-shop-toolbar p {
  margin: 4px 0 0;
  color: #7a8796;
}

.vf-shop-grid {
  gap: 22px;
}

.vf-shop-grid .shop-card {
  border-radius: 0;
  box-shadow: none;
}

.vf-shop-grid .shop-media {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #edf1f5;
}

.shop-new {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  background: #1e73be;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 650;
}

.shop-swatches {
  display: flex;
  gap: 8px;
  margin: 4px 0 12px;
}

.shop-swatches span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #d8dfe7;
}

.shop-body h3 a {
  color: inherit;
  transition: color .25s ease;
}

.shop-body h3 a:hover,
.shop-detail-link:hover {
  color: #1e73be;
}

.shop-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #667386;
  font-size: 13px;
  font-weight: 650;
}

.vf-part-detail-page {
  background: #f6f7f9;
  color: #151a22;
}

.vf-part-head {
  background: #fff;
  border-bottom: 1px solid #e7ebf0;
}

.vf-part-head .container {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vf-part-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #7a8796;
  font-size: 14px;
  font-weight: 650;
}

.vf-part-breadcrumb a {
  color: #526070;
}

.vf-part-breadcrumb a:hover {
  color: #1e73be;
}

.vf-part-breadcrumb strong {
  color: #1b2430;
}

.vf-part-cart-pill {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  position: relative;
  background: #111827;
  color: #fff;
  box-shadow: 0 14px 26px rgba(17, 24, 39, .18);
}

.vf-part-cart-pill span {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1e73be;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
}

.vf-part-detail {
  padding: 34px 0 54px;
}

.vf-part-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr) 320px;
  gap: 28px;
  align-items: start;
}

.vf-part-gallery,
.vf-part-info,
.vf-part-order-card,
.part-related-card {
  background: #fff;
  border: 1px solid #e1e6ee;
  box-shadow: 0 18px 40px rgba(15, 35, 66, .07);
}

.vf-part-gallery,
.vf-part-info {
  min-height: 640px;
}

.vf-part-gallery {
  padding: 26px;
}

.vf-part-main-image {
  min-height: 500px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 48%, rgba(30, 115, 190, .1), transparent 15rem),
    #fff;
}

.vf-part-main-image a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  cursor: zoom-in;
}

.vf-part-main-image img {
  width: min(92%, 620px);
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(6, 24, 48, .14));
  animation: previewCarIn .45s ease both;
  opacity: 1;
  transition: opacity .24s ease, transform .24s ease, filter .24s ease;
}

.vf-part-main-image img.is-switching {
  opacity: .18;
  transform: scale(.985);
}

.vf-part-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.vf-part-thumbs.slick-initialized {
  display: block;
  padding: 0 42px;
}

.vf-part-thumbs .slick-list {
  margin: 0 -16px;
}

.vf-part-thumbs .slick-slide {
  /* padding: 0 16px; */
  margin: 0px 3px;
}

.part-thumb {
  width: 100%;
  min-height: 108px;
  border: 1px solid #e4eaf1;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.part-thumb:hover,
.part-thumb.active {
  border-color: #1e73be;
  box-shadow: 0 14px 26px rgba(30, 115, 190, .13);
}

.part-thumb img {
  max-width: 92%;
  max-height: 84px;
  object-fit: contain;
}

.vf-part-thumb-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #d7e3ef;
  border-radius: 50%;
  background: #fff;
  color: #0b4ea2;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(6, 24, 48, .12);
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}

.vf-part-thumb-arrow.prev {
  left: 0;
}

.vf-part-thumb-arrow.next {
  right: 0;
}

.vf-part-thumb-arrow:hover {
  border-color: #1e73be;
  background: #1e73be;
  color: #fff;
}

.vf-part-thumb-arrow.slick-disabled {
  opacity: .35;
  pointer-events: none;
}

.vf-part-info {
  padding: 34px 36px 28px;
}

.vf-part-kicker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  display: none;
}

.vf-part-kicker span,
.vf-part-labels span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef6ff;
  color: #1e73be;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 650;
}

.vf-part-info h1 {
  margin: 0 0 18px;
  font-size: 40px;
  letter-spacing: -.045em;
  line-height: 1.12;
  color: #151a22;
}

.vf-part-price {
  color: #1e73be;
  font-size: 28px;
  font-weight: 650;
  margin-bottom: 18px;
}

.vf-part-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.vf-part-description {
  max-height: 420px;
  overflow: hidden;
  position: relative;
}

.vf-part-description.is-expanded {
  max-height: none;
}

.vf-part-description h2 {
  margin: 24px 0 12px;
  color: #151a22;
  font-size: 22px;
}

.vf-part-description p,
.vf-part-description li {
  color: #667386;
  line-height: 1.72;
}

.vf-part-description ul {
  margin: 0;
  padding-left: 20px;
}

.vf-part-note {
  background: #f3f8ff;
  border-left: 4px solid #1e73be;
  padding: 14px 16px;
  margin: 18px 0;
}

.vf-part-note strong {
  color: #151a22;
}

.part-view-more {
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: #1e73be;
  font-weight: 650;
  cursor: pointer;
}

.vf-part-order {
  position: sticky;
  top: 116px;
}

.vf-part-order-card {
  padding: 20px;
}

.vf-part-order-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.vf-part-order-product {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf1f5;
}

.vf-part-order-product img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: #f6f8fb;
}

.vf-part-order-product strong,
.vf-part-order-product span {
  display: block;
}

.vf-part-order-product strong {
  color: #151a22;
  line-height: 1.35;
}

.vf-part-order-product span {
  color: #1e73be;
  font-weight: 650;
  margin-top: 6px;
}

.vf-part-qty,
.vf-part-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #edf1f5;
  color: #667386;
  font-weight: 650;
}

.vf-part-qty div {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dfe7f1;
}

.vf-part-qty button {
  width: 38px;
  height: 38px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
}

.vf-part-qty strong {
  width: 42px;
  text-align: center;
  color: #151a22;
}

.vf-part-stock {
  color: #7a8796;
  line-height: 1.6;
  margin: 16px 0 0;
}

.vf-part-total strong {
  color: #1e73be;
  font-size: 20px;
}

.vf-part-order-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.vf-part-order-card #partDetailAddCart {
  min-height: 50px;
  border: 1px solid rgba(30, 115, 190, .18);
  background: linear-gradient(135deg, #f7fbff, #e8f3ff);
  color: #0f56a6;
  box-shadow: 0 14px 26px rgba(15, 86, 166, .12);
}

.vf-part-order-card #partDetailAddCart:hover {
  border-color: rgba(30, 115, 190, .34);
  background: linear-gradient(135deg, #ffffff, #dcebff);
  color: #0a3b78;
}

.vf-part-order-card #partDetailAddCart:disabled,
.vf-part-order-card #partDetailAddCart:disabled:hover {
  opacity: 1;
  cursor: progress;
  transform: none;
  filter: none;
}

.vf-part-order-card .btn.ghost.is-added,
#partDetailAddCart.is-added {
  background: #0f9f6e;
  border-color: #0f9f6e;
  color: #fff;
}

.vf-part-related {
  padding: 0 0 70px;
}

.vf-part-related h2 {
  margin: 0 0 22px;
  font-size: 32px;
  color: #151a22;
}

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

.part-related-card {
  padding: 18px;
  color: #151a22;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.part-related-card:hover {
  transform: translateY(-7px);
  border-color: rgba(30, 115, 190, .38);
  box-shadow: 0 24px 42px rgba(15, 35, 66, .11);
}

.part-related-card span {
  height: 170px;
  display: grid;
  place-items: center;
  background: #f7f9fc;
  margin-bottom: 14px;
}

.part-related-card img {
  max-width: 86%;
  max-height: 140px;
  object-fit: contain;
}

.part-related-card strong {
  display: block;
  min-height: 52px;
  line-height: 1.45;
}

.part-related-card em {
  display: block;
  margin-top: 10px;
  color: #1e73be;
  font-style: normal;
  font-weight: 650;
}

.service-page,
.news-page,
.vf-form-page,
.calc-page,
.deposit-page {
  background: linear-gradient(180deg, #f7fbff, #fff 36%, #f5f7fb);
}

.service-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card-pro {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(6, 27, 58, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.service-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(6, 27, 58, .13);
}

.service-card-pro img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.service-card-pro div {
  padding: 22px;
}

.service-card-pro h3 {
  margin: 12px 0 8px;
  font-size: 24px;
}

.service-card-pro p {
  color: var(--muted);
  line-height: 1.75;
}

.service-cta {
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(6, 27, 58, .94), rgba(15, 86, 166, .9)),
    url("../images/workshop-blue.png") center/cover no-repeat;
  color: #fff;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.news-filter-row {
  margin-bottom: 28px;
}

.news-latest {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 22px;
  margin-bottom: 34px;
}

.news-mini-list {
  display: grid;
  gap: 18px;
}

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

.news-category-grid .news-card {
  animation: homeCardIn .45s ease both;
  animation-delay: var(--stagger, 0ms);
}

.news-card.is-hidden {
  display: none;
}

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

.news-category-section {
  display: grid;
  gap: 18px;
}

.news-category-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.news-category-title h3 {
  margin: 8px 0 0;
  font-size: 28px;
}

.article-news-more {
  padding-top: 0;
}

.article-latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.news-detail-category-head {
  margin-top: 20px;
}

.vf-form-card {
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(6, 27, 58, .11);
  overflow: hidden;
}

.vf-form-visual {
  min-height: 100%;
  padding: 34px;
  background:
    radial-gradient(circle at 70% 28%, rgba(35, 183, 255, .18), transparent 22rem),
    linear-gradient(145deg, #061b3a, #0f56a6);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.vf-form-visual p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
}

.vf-form-visual img {
  margin-top: auto;
  padding-top: 24px;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, .28));
}

.vf-form-panel {
  padding: 34px;
  background: #fff;
}

.vf-form-group-title {
  margin: 24px 0 14px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
}

.vf-form-group-title:first-of-type {
  margin-top: 0;
}

body.com-nhan-uu-dai .vf-form-page>.section {
  padding-top: 48px;
}

body.com-nhan-uu-dai.vf-motion-ready .vf-form-card.vf-reveal,
body.com-nhan-uu-dai.vf-motion-ready .vf-form-card.vf-reveal[data-motion] {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
  padding: 0;
}

@media (max-height: 760px),
(max-width: 1024px) {
  body.com-nhan-uu-dai .vf-page-hero {
    min-height: clamp(260px, 42vh, 320px);
  }

  body.com-nhan-uu-dai .vf-form-page>.section {
    padding-top: 28px;
  }
}

.calc-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.loan-form,
.loan-result-panel {
  grid-column: 1 / -1;
}

.loan-form {
  border-radius: 8px;
  border: 1px solid #dfe7f3;
  background: #fff;
  box-shadow: 0 18px 46px rgba(6, 27, 58, .08);
}

.calc-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #eef5ff;
  color: #496073;
  line-height: 1.7;
}

.calc-note.mini {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.rolling-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(6, 27, 58, .09);
}

.rolling-steps {
  margin: 18px 0 22px;
}

.roll-addon-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: flex-start;
  margin: 4px 0 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f6f9fd;
  cursor: pointer;
}

.roll-addon-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-700);
  flex: 0 0 auto;
}

.roll-addon-toggle span {
  font-weight: 650;
  line-height: 1.45;
}

.rolling-result-panel {
  position: sticky;
  top: 112px;
  overflow: hidden;
}

.rolling-result-panel h2 {
  margin-top: 8px;
}

.rolling-section {
  background: #f7f8fb;
}

.rolling-shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  gap: 34px;
  align-items: start;
}

.rolling-config-panel,
.rolling-estimate-panel {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(12, 24, 48, .08);
  padding: 34px;
}

.rolling-config-panel h2,
.rolling-estimate-panel h2 {
  margin: 0 0 24px;
  color: #222831;
  font-size: 26px;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rolling-preview {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 16px;
  align-items: center;
  margin: 24px 0 18px;
  min-height: 260px;
}

.rolling-preview img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(12, 24, 48, .16));
}

.rolling-arrow {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #3165e7;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.rolling-swatches {
  min-height: 54px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rolling-swatch {
  width: 54px;
  height: 54px;
  border: 2px solid transparent;
  border-radius: 7px;
  background: #fff;
  padding: 3px;
  cursor: pointer;
}

.rolling-swatch span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid rgba(12, 24, 48, .12);
  background: #e9edf4;
  background-size: cover;
  background-position: center;
}

.rolling-swatch.active {
  border-color: #3165e7;
}

.rolling-estimate-panel {
  position: sticky;
  top: 112px;
}

.rolling-estimate-panel .result-line {
  color: #222831;
  border-bottom-color: #eceff4;
}

.rolling-estimate-panel .result-line strong {
  color: #202630;
  font-size: 22px;
  font-weight: 600;
}

.rolling-estimate-panel .result-line.is-group {
  margin-top: 18px;
  padding: 14px 0;
  background: #f5f5f5;
  border-bottom: 0;
}

.rolling-estimate-panel .result-line.is-group span,
.rolling-estimate-panel .result-line.is-group strong {
  padding: 0 12px;
  font-weight: 650;
}

.rolling-estimate-panel .result-line.is-total {
  align-items: center;
  margin-top: 24px;
  padding: 22px;
  border-radius: 6px;
  background: #edf3ff;
}

.rolling-estimate-panel .result-line.is-total strong {
  color: #303a45;
  font-size: 34px;
  line-height: 1;
}

.rolling-detail-head {
  display: grid;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eceff4;
}

.rolling-detail-head div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  color: #202630;
  font-size: 21px;
  line-height: 1.4;
}

.rolling-detail-head strong {
  white-space: nowrap;
  font-weight: 500;
}

.rolling-actions {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.rolling-actions .vf-shop-primary,
.rolling-actions .vf-shop-secondary {
  width: 100%;
  border-radius: 4px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.rolling-actions .vf-shop-secondary {
  min-height: 58px;
  border: 1px solid #3165e7;
  background: #fff;
  color: #3165e7;
  display: inline-flex;
  align-items: center;
  font-weight: 650;
}

@media (max-width: 1024px) {
  .rolling-shop-grid {
    grid-template-columns: 1fr;
  }

  .rolling-estimate-panel {
    position: static;
  }
}

@media (max-width: 767px) {

  .rolling-config-panel,
  .rolling-estimate-panel {
    padding: 24px 20px;
  }

  .rolling-config-panel h2,
  .rolling-estimate-panel h2 {
    font-size: 22px;
  }

  .rolling-preview {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
    min-height: 220px;
  }

  .rolling-preview img {
    height: 220px;
  }

  .rolling-arrow {
    width: 42px;
    height: 42px;
  }

  .rolling-swatches {
    gap: 10px;
  }

  .rolling-swatch {
    width: 46px;
    height: 46px;
  }

  .rolling-detail-head div,
  .rolling-estimate-panel .result-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .rolling-estimate-panel .result-line.is-group {
    gap: 10px;
  }

  .rolling-estimate-panel .result-line strong {
    font-size: 18px;
  }

  .rolling-estimate-panel .result-line.is-total strong {
    font-size: 28px;
  }
}

.deposit-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.deposit-preview {
  background:
    radial-gradient(circle at center, #fff, #eef4fb 72%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 124px;
}

.deposit-preview img {
  min-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(0, 0, 0, .16));
}

.deposit-summary {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.deposit-summary .result-line {
  color: var(--ink);
  border-color: var(--line);
}

.deposit-summary .result-line strong {
  text-align: right;
  overflow-wrap: anywhere;
}

.deposit-preview-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(30, 115, 190, .16);
  border-radius: 18px;
  background: rgba(30, 115, 190, .07);
  color: var(--muted);
  line-height: 1.55;
}

.deposit-preview-note strong {
  color: var(--ink);
  font-size: 16px;
}

.deposit-form-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 56px rgba(6, 27, 58, .09);
}

.deposit-page {
  background: #f6f7f8;
}

.deposit-shop {
  min-height: calc(100vh - 86px);
  background: #f6f7f8;
}

.deposit-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(420px, .86fr);
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(100vh - 86px);
}

.deposit-shop .deposit-preview {
  position: sticky;
  top: 0;
  min-height: calc(100vh - 86px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 36px 7vw 34px;
  background: #f6f7f8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deposit-logo {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: 22px;
}

.deposit-logo img {
  width: 128px;
  height: auto;
  min-height: 0;
  filter: none;
}

.deposit-model-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.deposit-model-tabs {
  display: flex;
  gap: 24px;
  align-self: stretch;
  justify-content: center;
  margin: 4px 0 10px;
  color: #232a34;
  font-weight: 650;
}

.deposit-model-tabs button {
  border: 0;
  background: transparent;
  color: #7b8490;
  padding: 8px 0;
  font-weight: 650;
}

.deposit-model-tabs button.active {
  color: #1c2632;
}

.deposit-model-rail {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(7, minmax(72px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.deposit-model-rail button {
  min-width: 76px;
  border: 0;
  background: transparent;
  padding: 8px 6px 10px;
  color: #596371;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

.deposit-model-rail button.active {
  color: #1464d2;
  border-bottom-color: #1464d2;
}

.deposit-model-rail img {
  width: 100%;
  height: 46px;
  min-height: 0;
  object-fit: contain;
  filter: none;
}

.deposit-model-rail span {
  display: block;
  margin-top: 4px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 650;
}

.deposit-car-stage {
  width: 100%;
  min-height: 310px;
  display: grid;
  place-items: end center;
  margin-top: auto;
}

.deposit-car-stage img,
.deposit-preview #depositPreview {
  width: min(660px, 100%);
  height: 330px;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(16, 24, 40, .13));
}

.deposit-specs {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px auto 8px;
  text-align: center;
}

.deposit-specs span {
  display: block;
  min-height: 34px;
  color: #404852;
  font-size: 12px;
  line-height: 1.35;
}

.deposit-specs strong {
  display: block;
  margin-top: 5px;
  color: #1e242c;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 650;
}

.deposit-disclaimer {
  width: min(640px, 100%);
  margin: 0 auto 24px;
  color: #747d89;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.deposit-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(380px, 100%);
  padding: 4px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(30, 56, 96, .06);
}

.deposit-tabs button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2e3238;
  font-weight: 650;
  cursor: pointer;
}

.deposit-tabs button.active {
  color: #1464d2;
  box-shadow: inset 0 0 0 1px #1464d2;
}

.deposit-preview small {
  margin-top: 24px;
  color: #7c8592;
  font-size: 11px;
}

.deposit-shop .deposit-form-panel {
  min-height: calc(100vh - 86px);
  border: 0;
  border-radius: 0;
  box-shadow: -10px 0 38px rgba(15, 23, 42, .04);
  background: #fff;
  padding: 42px 40px 112px;
  position: relative;
}

.deposit-stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 26px;
}

.deposit-stepper button {
  min-width: 0;
  border: 0;
  border-bottom: 4px solid #eef1f5;
  background: transparent;
  color: #777f8b;
  padding: 0 0 12px;
  font-weight: 650;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.deposit-stepper i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d9dee6;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-style: normal;
  flex: 0 0 auto;
}

.deposit-stepper button.active {
  color: #1464d2;
  border-color: #1464d2;
}

.deposit-stepper button.active i,
.deposit-stepper button.done i {
  background: #1464d2;
}

.deposit-step {
  display: none;
}

.deposit-step.active {
  display: block;
}

.deposit-lead {
  margin: 0 0 28px;
  color: #2f3742;
  line-height: 1.55;
}

.deposit-step h2 {
  margin: 30px 0 20px;
  color: #1f2630;
  font-size: 22px;
  line-height: 1.25;
}

.deposit-step h3 {
  margin: 24px 0 12px;
  color: #202832;
  font-size: 20px;
}

.deposit-label {
  display: block;
  color: #333b46;
  margin-bottom: 14px;
  font-weight: 600;
}

.deposit-field {
  position: relative;
  margin-bottom: 18px;
}

.deposit-field input,
.deposit-field select,
.deposit-field textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid #d9dee6;
  border-radius: 0;
  background: #fff;
  color: #1f2630;
  padding: 0 48px 0 16px;
  font-size: 16px;
  outline: 0;
}

.deposit-field textarea {
  min-height: 116px;
  padding-top: 16px;
  resize: vertical;
}

.deposit-field i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c94a1;
}

.deposit-invalid-feedback {
  width: 100%;
  margin: 7px 0 0;
  color: #dc3545;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.deposit-field.is-invalid input,
.deposit-field.is-invalid select,
.deposit-field.is-invalid textarea,
.deposit-field.is-invalid .select2-selection {
  border-color: #dc3545 !important;
  box-shadow: inset 0 0 0 1px #dc3545;
}

.deposit-field.is-invalid i {
  color: #dc3545;
}

.deposit-radio-row.is-invalid label,
.deposit-package.is-invalid label,
.deposit-gateways.is-invalid label {
  border-color: #dc3545;
  color: #dc3545;
}

.deposit-radio-row.is-invalid .deposit-invalid-feedback {
  grid-column: 1 / -1;
}

.deposit-radio-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.deposit-radio-row.stacked {
  grid-template-columns: 1fr;
}

.deposit-radio-row label {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2d3440;
  font-weight: 650;
  cursor: pointer;
}

.deposit-radio-row input,
.deposit-programs input,
.deposit-terms input {
  width: 18px;
  height: 18px;
  accent-color: #1464d2;
}

.deposit-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 14px;
  color: #2a313b;
  font-size: 18px;
}

.deposit-option-head strong {
  font-size: 16px;
}

.deposit-swatch-group {
  margin-bottom: 18px;
}

.deposit-swatch-group p {
  margin: 0 0 12px;
  color: #687281;
  font-size: 13px;
  font-weight: 650;
}

.deposit-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.deposit-swatches button {
  width: 56px;
  height: 56px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  cursor: pointer;
}

.deposit-swatches button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: var(--swatch, inherit);
  background-size: cover;
  background-position: center;
}

.deposit-swatches button.active {
  border-color: #1464d2;
}

.deposit-interior button {
  border-radius: 8px;
}

.deposit-interior button::before {
  border-radius: 5px;
}

.deposit-program-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 14px;
  color: #1f2630;
  font-size: 20px;
  font-weight: 650;
}

.deposit-program-head label input {
  position: absolute;
  opacity: 0;
}

.deposit-program-head label i {
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: #d7dde6;
  display: block;
  position: relative;
}

.deposit-program-head label i::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform .2s ease;
}

.deposit-program-head input:checked+i {
  background: #1464d2;
}

.deposit-program-head input:checked+i::before {
  transform: translateX(14px);
}

.deposit-programs {
  display: grid;
  gap: 12px;
  opacity: .55;
}

.deposit-programs.active {
  opacity: 1;
}

.deposit-programs label {
  min-height: 62px;
  border: 1px solid #e1e5eb;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #555f6d;
  font-weight: 650;
}

.deposit-note {
  margin-top: 18px;
  color: #687281;
  line-height: 1.6;
  font-size: 14px;
}

.deposit-voucher {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 10px;
  margin-bottom: 28px;
}

.deposit-voucher input {
  min-height: 54px;
  border: 1px solid #d9dee6;
  padding: 0 14px;
}

.deposit-voucher button,
.deposit-total-bar button,
.deposit-submit {
  border: 0;
  background: #1464d2;
  color: #fff;
  font-weight: 650;
  cursor: pointer;
}

.deposit-voucher button {
  border-radius: 2px;
}

.deposit-voucher-message {
  min-height: 20px;
  margin: -18px 0 20px;
  color: #687281;
  font-size: 13px;
}

.deposit-voucher-message.is-error {
  color: #d92d20;
}

.deposit-voucher-message.is-success {
  color: #14804a;
}

.deposit-showroom-card {
  display: grid;
  gap: 6px;
  margin: -6px 0 18px;
  padding: 14px 16px;
  border: 1px solid #dfe5ee;
  background: #f8fafc;
  color: #4f5b6a;
  line-height: 1.5;
}

.deposit-showroom-card strong {
  color: #1f2630;
}

.deposit-showroom-card a {
  color: #1464d2;
  font-weight: 650;
}

.deposit-estimate-links {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.deposit-estimate-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #eef1f5;
  color: #202833;
  font-weight: 650;
}

.deposit-estimate-links span {
  color: #1464d2;
}

.deposit-package,
.deposit-gateways {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.deposit-package label,
.deposit-gateways label {
  min-height: 58px;
  border: 1px solid #dfe5ee;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #2d3440;
  font-weight: 650;
}

.deposit-package strong {
  margin-left: auto;
  color: #1464d2;
}

.deposit-gateways {
  grid-template-columns: repeat(2, 1fr);
}

.deposit-gateways input,
.deposit-package input {
  accent-color: #1464d2;
}

.deposit-final-card {
  border: 1px solid #e0e5ed;
  background: #f8fafc;
  margin-bottom: 26px;
}

.deposit-final-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid #e0e5ed;
}

.deposit-final-card div:last-child {
  border-bottom: 0;
}

.deposit-final-card span {
  color: #687281;
}

.deposit-final-card strong {
  color: #17202b;
  text-align: right;
}

.deposit-terms {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  color: #525d6c;
  line-height: 1.55;
  margin: 18px 0;
}

.deposit-terms .deposit-invalid-feedback {
  flex: 0 0 100%;
  margin: -4px 0 0 30px;
}

.deposit-terms.is-invalid span {
  color: #dc3545;
}

.deposit-submit {
  width: 100%;
  min-height: 58px;
  text-transform: uppercase;
}

.deposit-reset-action {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: #1464d2;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
}

.deposit-submit-result {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  margin: 22px 0 16px;
  padding: 16px;
  border: 1px solid #b9e4cc;
  background: #f0fff6;
  color: #183d28;
}

.deposit-submit-result[hidden] {
  display: none !important;
}

.deposit-submit-result i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16a05d;
  color: #fff;
  font-size: 18px;
}

.deposit-submit-result span,
.deposit-submit-result strong,
.deposit-submit-result p {
  display: block;
}

.deposit-submit-result span {
  font-size: 16px;
  font-weight: 650;
}

.deposit-submit-result strong {
  margin-top: 4px;
  color: #1060c9;
  font-size: 15px;
}

.deposit-submit-result p {
  margin: 6px 0 0;
  color: #526170;
  line-height: 1.5;
}

.deposit-submit-result.is-error {
  border-color: #fac5bd;
  background: #fff5f3;
  color: #7a271a;
}

.deposit-submit-result.is-error i {
  background: #d92d20;
}

.deposit-submit-result.is-error strong {
  color: #7a271a;
}

.deposit-completion {
  display: grid;
  gap: 18px;
  padding: 28px 0 8px;
}

.deposit-completion[hidden] {
  display: none !important;
}

.deposit-completion .deposit-submit-result {
  margin: 0;
}

.deposit-form-panel.is-complete .deposit-stepper,
.deposit-form-panel.is-complete .deposit-step,
.deposit-form-panel.is-complete .deposit-total-bar,
.deposit-form-panel.is-complete .form-message {
  display: none !important;
}

.deposit-total-bar {
  position: sticky;
  left: 40px;
  right: 40px;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #eef1f5;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  margin-top: 32px;
  z-index: 5;
}

.deposit-total-bar span,
.deposit-total-bar small {
  display: block;
  color: #6f7885;
  font-size: 12px;
}

.deposit-total-bar strong {
  display: block;
  margin: 4px 0;
  color: #222a35;
  font-size: 20px;
}

.deposit-total-bar button {
  min-height: 50px;
  min-width: 132px;
  padding: 0 20px;
}

.deposit-total-bar button:disabled,
.deposit-total-bar button[data-invalid="true"] {
  cursor: pointer;
  opacity: .45;
}

.deposit-total-bar button[data-deposit-prev] {
  background: #fff;
  color: #1464d2;
  border: 1px solid #1464d2;
}

.deposit-total-bar button[hidden] {
  display: none;
}

@media (max-width: 1180px) {
  .deposit-shell {
    grid-template-columns: 1fr;
  }

  .deposit-shop .deposit-preview {
    position: static;
    min-height: auto;
    padding: 28px 24px 30px;
  }

  .deposit-shop .deposit-form-panel {
    min-height: auto;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .deposit-shop {
    min-height: 0;
  }

  .deposit-shop .deposit-preview {
    padding: 22px 16px 24px;
  }

  .deposit-logo img {
    width: 112px;
  }

  .deposit-model-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .deposit-model-rail {
    grid-template-columns: repeat(7, 82px);
    justify-content: flex-start;
  }

  .deposit-car-stage {
    min-height: 210px;
  }

  .deposit-car-stage img,
  .deposit-preview #depositPreview {
    height: 220px;
  }

  .deposit-specs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deposit-specs span {
    min-height: 0;
  }

  .deposit-specs strong {
    font-size: 20px;
  }

  .deposit-disclaimer {
    font-size: 12px;
  }

  .deposit-shop .deposit-form-panel {
    padding: 26px 16px 150px;
  }

  .deposit-stepper {
    gap: 4px;
  }

  .deposit-stepper button {
    flex-direction: column;
    font-size: 12px;
    line-height: 1.25;
  }

  .deposit-radio-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .deposit-swatches button {
    width: 50px;
    height: 50px;
  }

  .deposit-voucher {
    grid-template-columns: 1fr;
  }

  .deposit-final-card div,
  .deposit-option-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .deposit-final-card strong {
    text-align: left;
  }

  .deposit-total-bar {
    grid-template-columns: 1fr 1fr;
    margin-left: -16px;
    margin-right: -16px;
    padding: 14px 16px 16px;
  }

  .deposit-total-bar div {
    grid-column: 1 / -1;
  }

  .deposit-total-bar button {
    min-width: 0;
    width: 100%;
  }
}

body[data-page="deposit"] {
  background: #fff;
}

body[data-page="deposit"] .site-header,
body[data-page="deposit"] .site-footer,
body[data-page="deposit"] .floating-contact,
body[data-page="deposit"] .vf-floating-cart,
body[data-page="deposit"] .vf-cart-panel,
body[data-page="deposit"] .vf-cart-panel-backdrop,
body[data-page="deposit"] .vf-cart-backdrop {
  display: none !important;
}

body[data-page="deposit"].vf-cart-panel-open {
  overflow: auto;
}

body[data-page="deposit"] .deposit-page,
body[data-page="deposit"] .deposit-shop {
  min-height: 100vh;
  background: #f7f8fa;
}

body[data-page="deposit"] .deposit-shell {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  grid-template-columns: minmax(760px, 1fr) minmax(430px, 560px);
}

body[data-page="deposit"] .deposit-shop .deposit-preview {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  display: block;
  padding: 24px clamp(28px, 3.6vw, 72px) 30px;
  background: #f7f8fa;
}

body[data-page="deposit"] .deposit-logo {
  position: absolute;
  top: 22px;
  left: clamp(34px, 4.8vw, 92px);
  margin: 0;
  z-index: 2;
}

body[data-page="deposit"] .deposit-logo img {
  width: 144px;
}

body[data-page="deposit"] .deposit-account {
  position: absolute;
  top: 28px;
  right: clamp(34px, 4.8vw, 92px);
  z-index: 2;
  color: #444;
  font-size: 18px;
  font-weight: 600;
}

body[data-page="deposit"] .deposit-model-tabs {
  width: calc(100% - 220px);
  margin: 92px 0 0 190px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-bottom: 4px solid #fff;
}

body[data-page="deposit"] .deposit-model-tabs button {
  min-height: 52px;
  border-bottom: 4px solid transparent;
  margin-bottom: -4px;
  color: #777;
  font-size: 20px;
  font-weight: 650;
  cursor: pointer;
}

body[data-page="deposit"] .deposit-model-tabs button.active {
  color: #1768ff;
  border-bottom-color: #1768ff;
}

body[data-page="deposit"] .deposit-model-arrow {
  position: absolute;
  left: calc(clamp(32px, 4.2vw, 78px) + 43px);
  z-index: 3;
  width: 54px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #111827;
  display: grid;
  place-items: center;
  cursor: pointer;
}

body[data-page="deposit"] .deposit-model-arrow.is-up {
  top: 126px;
}

body[data-page="deposit"] .deposit-model-arrow.is-down {
  bottom: 18px;
}

body[data-page="deposit"] .deposit-model-arrow i {
  font-size: 22px;
}

body[data-page="deposit"] .deposit-model-rail {
  position: absolute;
  top: 160px;
  bottom: 58px;
  left: clamp(32px, 4.2vw, 78px);
  width: 140px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

body[data-page="deposit"] .deposit-model-rail::-webkit-scrollbar {
  display: none;
}

body[data-page="deposit"] .deposit-model-rail button {
  min-width: 0;
  min-height: 142px;
  padding: 0;
  border: 0;
  color: #888;
  opacity: .68;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
}

body[data-page="deposit"] .deposit-model-rail button.active {
  color: #333;
  opacity: 1;
}

body[data-page="deposit"] .deposit-model-rail img {
  width: 126px;
  height: 78px;
}

body[data-page="deposit"] .deposit-model-rail span {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 650;
}

body[data-page="deposit"] .deposit-car-stage {
  width: calc(100% - 220px);
  min-height: 390px;
  margin: 39px 0 0 190px;
  place-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

body[data-page="deposit"] .deposit-car-stage img,
body[data-page="deposit"] .deposit-preview #depositPreview {
  width: min(820px, 96%);
  height: 400px;
  filter: drop-shadow(0 20px 20px rgba(20, 24, 32, .12));
}

body[data-page="deposit"] .deposit-specs {
  width: calc(100% - 220px);
  max-width: 860px;
  margin: 18px 0 0 190px;
  gap: 38px;
}

body[data-page="deposit"] .deposit-specs span {
  min-height: 0;
  font-size: 15px;
  color: #3d434c;
}

body[data-page="deposit"] .deposit-specs strong {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 500;
  color: #30343a;
  overflow-wrap: anywhere;
}

body[data-page="deposit"] .deposit-disclaimer {
  width: calc(100% - 220px);
  max-width: 760px;
  margin: 34px 0 0 190px;
  font-size: 15px;
  color: #8b9098;
}

body[data-page="deposit"] .deposit-tabs {
  display: none;
}

body[data-page="deposit"] .deposit-preview small {
  display: block;
  width: calc(100% - 220px);
  margin: 0 0 0 190px;
  text-align: center;
  color: #8b9098;
  font-size: 13px;
}

body[data-page="deposit"] .deposit-shop .deposit-form-panel {
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  padding: 44px 36px 0;
  box-shadow: -8px 0 24px rgba(15, 23, 42, .045);
}

body[data-page="deposit"] .deposit-stepper {
  gap: 18px;
  margin-bottom: 24px;
}

body[data-page="deposit"] .deposit-stepper button {
  justify-content: flex-start;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom-width: 4px;
  font-size: 16px;
  white-space: nowrap;
}

body[data-page="deposit"] .deposit-stepper i {
  width: 22px;
  height: 22px;
  font-size: 12px;
}

body[data-page="deposit"] .deposit-lead {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.48;
  color: #333942;
}

body[data-page="deposit"] .deposit-step h2 {
  margin: 32px 0 18px;
  font-size: 24px;
}

body[data-page="deposit"] .deposit-option-head {
  margin: 0 0 26px;
  font-size: 16px;
  font-weight: 650;
}

body[data-page="deposit"] .deposit-option-head strong {
  color: #3d4148;
  font-size: 16px;
  font-weight: 500;
}

body[data-page="deposit"] .deposit-swatch-group {
  margin-bottom: 38px;
}

body[data-page="deposit"] .deposit-swatch-group p {
  margin-bottom: 22px;
  color: #3b414b;
  font-size: 16px;
  font-weight: 650;
}

body[data-page="deposit"] .deposit-swatches {
  gap: 14px 18px;
}

body[data-page="deposit"] .deposit-swatches button {
  width: 66px;
  height: 66px;
  border-width: 3px;
  border-radius: 9px;
  padding: 5px;
}

body[data-page="deposit"] .deposit-swatches button::before {
  background: var(--swatch, inherit);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

body[data-page="deposit"] .deposit-swatches button.active {
  border-color: #1768ff;
  box-shadow: 0 0 0 2px rgba(23, 104, 255, .18);
}

body[data-page="deposit"] .deposit-programs label {
  align-items: flex-start;
  flex-wrap: wrap;
}

body[data-page="deposit"] .deposit-programs label span {
  flex: 1 1 0;
}

body[data-page="deposit"] .deposit-programs label small {
  flex: 0 0 100%;
  padding-left: 32px;
  color: #737b87;
  font-weight: 500;
  line-height: 1.45;
}

body[data-page="deposit"] .deposit-programs input:checked+span {
  color: #4c5665;
}

body[data-page="deposit"] .deposit-note {
  padding: 16px 18px;
  border: 1px solid #dfe5ee;
  background: #f8fafc;
}

body[data-page="deposit"] .deposit-note strong {
  color: #1f2630;
}

body[data-page="deposit"] .deposit-note p:last-child {
  margin-bottom: 0;
}

body[data-page="deposit"] .deposit-terms span {
  flex: 1 1 0;
}

body[data-page="deposit"] .deposit-estimate-links {
  margin-top: 40px;
  gap: 0;
}

body[data-page="deposit"] .deposit-estimate-links a {
  min-height: 48px;
  font-size: 16px;
}

body[data-page="deposit"] .deposit-estimate-links span {
  font-size: 16px;
  font-weight: 650;
}

body[data-page="deposit"] .deposit-total-bar {
  margin: 32px -36px 0;
  padding: 18px 36px;
  background: #fff;
}

body[data-page="deposit"] .deposit-total-bar button {
  min-height: 52px;
  border-radius: 0;
}

@media (max-width: 1180px) {
  body[data-page="deposit"] .deposit-shell {
    grid-template-columns: 1fr;
  }

  body[data-page="deposit"] .deposit-shop .deposit-preview,
  body[data-page="deposit"] .deposit-shop .deposit-form-panel {
    position: relative;
    min-height: auto;
    max-height: none;
  }

  body[data-page="deposit"] .deposit-model-tabs,
  body[data-page="deposit"] .deposit-car-stage,
  body[data-page="deposit"] .deposit-specs,
  body[data-page="deposit"] .deposit-disclaimer,
  body[data-page="deposit"] .deposit-preview small {
    width: calc(100% - 190px);
    margin-left: 170px;
  }
}

@media (max-width: 767px) {
  body[data-page="deposit"] .deposit-shop .deposit-preview {
    padding: 20px 16px 26px;
  }

  body[data-page="deposit"] .deposit-logo,
  body[data-page="deposit"] .deposit-account {
    position: static;
  }

  body[data-page="deposit"] .deposit-model-arrow {
    position: static;
    width: 42px;
    height: 32px;
    display: inline-grid;
    margin-top: 14px;
  }

  body[data-page="deposit"] .deposit-model-arrow.is-down {
    float: right;
  }

  body[data-page="deposit"] .deposit-account {
    float: right;
    margin-top: 4px;
  }

  body[data-page="deposit"] .deposit-model-tabs,
  body[data-page="deposit"] .deposit-car-stage,
  body[data-page="deposit"] .deposit-specs,
  body[data-page="deposit"] .deposit-disclaimer,
  body[data-page="deposit"] .deposit-preview small {
    width: 100%;
    margin-left: 0;
  }

  body[data-page="deposit"] .deposit-model-tabs {
    clear: both;
    margin-top: 28px;
  }

  body[data-page="deposit"] .deposit-model-tabs button {
    font-size: 15px;
  }

  body[data-page="deposit"] .deposit-model-rail {
    position: static;
    width: 100%;
    flex-direction: row;
    gap: 12px;
    margin: 18px 0 0;
    overflow-x: auto;
  }

  body[data-page="deposit"] .deposit-model-rail button {
    min-width: 108px;
    min-height: 112px;
  }

  body[data-page="deposit"] .deposit-model-rail img {
    width: 96px;
    height: 58px;
  }

  body[data-page="deposit"] .deposit-model-rail span {
    font-size: 15px;
  }

  body[data-page="deposit"] .deposit-car-stage {
    min-height: 210px;
    margin-top: 18px;
  }

  body[data-page="deposit"] .deposit-car-stage img,
  body[data-page="deposit"] .deposit-preview #depositPreview {
    height: 220px;
  }

  body[data-page="deposit"] .deposit-specs {
    grid-template-columns: 1fr;
  }

  body[data-page="deposit"] .deposit-shop .deposit-form-panel {
    padding: 28px 16px 0;
  }

  body[data-page="deposit"] .deposit-stepper {
    gap: 6px;
  }

  body[data-page="deposit"] .deposit-stepper button {
    flex-direction: column;
    align-items: center;
    font-size: 12px;
  }

  body[data-page="deposit"] .deposit-swatches button {
    width: 58px;
    height: 58px;
  }
}

.vf-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.vf-choice-pill {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 650;
  cursor: pointer;
}

.vf-choice-pill input,
.vf-terms input {
  width: auto;
  accent-color: #1e73be;
  flex: 0 0 auto;
}

.vf-terms {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #6f7f91;
  font-size: 12px;
  line-height: 1.45;
}

.field-meta-end {
  justify-content: flex-end;
}

.field-hint {
  min-width: 0;
}

.field-counter {
  flex: 0 0 auto;
  color: #7f8da0;
  font-variant-numeric: tabular-nums;
}

.vf-form-note {
  margin: -2px 0 18px;
  color: #607187;
  font-size: 13px;
  line-height: 1.65;
}

.vf-customer-docs[hidden],
.vf-customer-docs.is-hidden {
  display: none !important;
}

.vf-customer-docs {
  margin-top: 2px;
}

.article-detail-page {
  background: linear-gradient(180deg, #f7fbff, #fff 38%, #f5f7fb);
}

.article-hero {
  min-height: 470px;
  display: grid;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 20, 42, .88), rgba(5, 20, 42, .32));
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  /* max-width: 920px; */
}

.article-hero h1 {
  margin: 18px 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.065em;
}

.article-hero p {
  color: #dcecff;
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
}

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

.article-content,
.article-related {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 20px 54px rgba(6, 27, 58, .08);
}

.article-content {
  padding: 30px;
}

.article-cover {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 28px;
}

.article-content h2 {
  margin: 28px 0 12px;
  font-size: 30px;
  letter-spacing: -.04em;
}

.article-content p,
.article-lead {
  color: #5f6e80;
  line-height: 1.85;
  font-size: 16px;
}

.article-lead {
  font-size: 20px;
  color: #253449;
  font-weight: 650;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #667386;
  font-weight: 650;
  margin-bottom: 20px;
}

.article-content blockquote {
  border-left: 5px solid var(--blue-700);
  background: #eef5ff;
  margin: 28px 0 0;
  padding: 22px;
  color: #26384f;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 650;
}

.article-step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.article-step-grid div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: #f8fbff;
}

.article-step-grid strong {
  display: block;
  color: var(--blue-700);
  font-size: 28px;
  margin-bottom: 10px;
}

.article-step-grid span {
  color: #5f6e80;
  line-height: 1.7;
}

.article-sidebar {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 20px;
}

.article-related {
  padding: 24px;
}

.article-related h3 {
  margin: 0 0 14px;
}

.article-related a {
  display: block;
  color: #455568;
  font-weight: 650;
  line-height: 1.55;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.article-related a:last-child {
  border-bottom: 0;
}

.article-related a:hover {
  color: var(--blue-700);
}

.detail-hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 70% 36%, rgba(35, 183, 255, .18), transparent 28rem),
    linear-gradient(180deg, #eef7ff, #fff);
}

body.dark .detail-hero {
  background: linear-gradient(180deg, #071426, #0d2039);
}

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

.car-stage img {
  max-height: 390px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(6, 27, 58, .25));
}

.color-row {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}

.swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(6, 27, 58, .2);
  cursor: pointer;
}

.swatch.active {
  box-shadow: 0 0 0 3px var(--blue-700);
}

.spec-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.spec-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.spec-box strong {
  display: block;
  font-size: 24px;
  color: var(--blue-700);
}

.sticky-tabs {
  position: sticky;
  top: 110px;
  z-index: 30;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

body.dark .sticky-tabs {
  background: rgba(7, 20, 38, .88);
}

.tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
}

.tab-link {
  border: 0;
  background: transparent;
  padding: 18px 18px;
  font-weight: 650;
  cursor: pointer;
  color: var(--muted);
  white-space: nowrap;
}

.tab-link.active {
  color: var(--blue-700);
}

.tab-panel {
  display: none;
  animation: fadeUp .45s ease both;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 20px;
}

.gallery-grid img {
  border-radius: 28px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.feature-card div {
  padding: 20px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.spec-table th,
.spec-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.spec-table th {
  background: var(--blue-900);
  color: #fff;
}

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

.price-card {
  padding: 24px;
}

.price-card h3 {
  font-size: 26px;
  margin: 0 0 8px;
}

.price-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
}

.news-card {
  overflow: hidden;
}

.news-card>a,
.service-card-pro>a {
  display: block;
  color: inherit;
  text-decoration: none;
}

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

.news-card.big img {
  height: 430px;
}

.news-card div {
  padding: 22px;
}

.news-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--blue-700);
  font-weight: 650;
}

.news-list {
  display: grid;
  gap: 18px;
}

.form-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.form-panel {
  padding: 28px;
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.article-sidebar .form-panel h3 {
  margin: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}

.field-grid>*,
.deposit-grid>* {
  min-width: 0;
}

.field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-content: start;
  margin-bottom: 14px;
}

.field>* {
  min-width: 0;
  max-width: 100%;
}

.field label {
  font-weight: 650;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.vf-date-input {
  font-variant-numeric: tabular-nums;
}

.select2-container {
  width: 100% !important;
  max-width: 100%;
  font-family: inherit;
}

.field .select2-container,
.input-cart .select2-container,
.newsletter-input .select2-container {
  display: block;
}

.select2-container--default .select2-selection--single {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  padding: 0 44px 0 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #0f56a6;
  box-shadow: 0 0 0 4px rgba(15, 86, 166, .12);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--ink);
  line-height: 1.35;
  padding: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #7b8ca3;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 14px;
  top: 0;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #64758c transparent transparent transparent;
  border-width: 6px 5px 0 5px;
  margin-left: -5px;
  margin-top: -2px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #0f56a6 transparent;
  border-width: 0 5px 6px 5px;
}

.select2-dropdown {
  border: 1px solid rgba(15, 86, 166, .16);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(5, 21, 45, .16);
  overflow: hidden;
  z-index: 10050;
}

.select2-search--dropdown {
  padding: 10px;
  background: #f6f9fd;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
  font: inherit;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #0f56a6;
  box-shadow: 0 0 0 3px rgba(15, 86, 166, .11);
}

.select2-results__options {
  max-height: 260px;
}

.select2-container--default .select2-results__option {
  padding: 11px 14px;
  color: var(--ink);
  font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #0f56a6;
  color: #fff;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #eaf4ff;
  color: #0f56a6;
}

.shop-toolbar .select2-container--default .select2-selection--single,
.vf-shop-toolbar .select2-container--default .select2-selection--single {
  min-height: 46px;
  border-radius: 999px;
}

.xdsoft_datetimepicker {
  border: 1px solid rgba(15, 86, 166, .16) !important;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(5, 21, 45, .16);
  font-family: inherit;
  padding: 10px;
  z-index: 10060;
}

.xdsoft_datetimepicker .xdsoft_label,
.xdsoft_datetimepicker .xdsoft_calendar td,
.xdsoft_datetimepicker .xdsoft_calendar th {
  font-family: inherit;
}

.xdsoft_datetimepicker .xdsoft_calendar td {
  border-radius: 10px;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
  background: #0f56a6 !important;
  box-shadow: none !important;
  color: #fff !important;
}

.result-box {
  border-radius: 22px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: #fff;
  padding: 24px;
}

.result-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.result-line strong {
  font-size: 20px;
}

.result-line span {
  min-width: 0;
  line-height: 1.45;
}

.result-line.is-base strong,
.result-line.is-total strong {
  color: #9bd7ff;
}

.result-line.is-total {
  border-bottom: 0;
  padding-top: 18px;
  margin-top: 4px;
}

.result-line.is-total strong {
  font-size: 26px;
}

.result-line.is-saving strong {
  color: #a7f3d0;
}

.result-line.is-muted {
  opacity: .72;
}

.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.loan-result-panel {
  background: #fff;
  color: #162238;
  border: 1px solid #dfe7f3;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(6, 27, 58, .08);
}

.loan-result-panel>.eyebrow {
  color: #0f56a6 !important;
}

.loan-result-panel h2 {
  margin: 8px 0 18px;
  color: #111827;
}

.loan-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.loan-summary-card {
  min-height: 92px;
  border: 1px solid #e1e8f5;
  border-radius: 8px;
  background: #f7faff;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.loan-summary-card span {
  color: #667386;
  font-size: 13px;
  line-height: 1.35;
}

.loan-summary-card strong {
  color: #0b4fa3;
  font-size: 18px;
  line-height: 1.25;
}

.loan-table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin: 6px 0 14px;
}

.loan-table-toolbar h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  color: #111827;
}

.loan-table-toolbar p {
  margin: 6px 0 0;
  color: #667386;
  font-weight: 650;
}

.loan-download-btn {
  flex: 0 0 auto;
  border: 1px solid #b9d4f7;
  border-radius: 6px;
  background: #fff;
  color: #1e73be;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 16px;
  box-shadow: none;
}

.loan-table-wrap {
  max-height: 548px;
  overflow: auto;
  border: 1px solid #e1e8f5;
  border-radius: 8px;
  background: #fff;
}

.loan-schedule-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

.loan-schedule-table td.is-support {
  color: #00875a;
  font-weight: 650;
}

.loan-schedule-table th,
.loan-schedule-table td {
  padding: 13px 16px;
  border-right: 1px solid #e4ebf5;
  border-bottom: 1px solid #edf2f8;
  text-align: right;
  white-space: nowrap;
}

.loan-schedule-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #3165e7;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.loan-schedule-table td {
  color: #243042;
  font-weight: 760;
}

.loan-schedule-table td:first-child {
  text-align: center;
  color: #34445d;
}

.loan-schedule-table tbody tr:nth-child(odd) td {
  background: #f7f9fc;
}

.loan-schedule-table th:last-child,
.loan-schedule-table td:last-child {
  border-right: 0;
}

.quote-summary {
  margin: 8px 0 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 650;
}

.quote-summary:empty {
  display: none;
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(6, 27, 58, .28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.cart-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
  z-index: 60;
  transform: translateY(calc(100% + 28px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s ease;
}

.cart-drawer.open,
.cart-drawer:target {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.cart-drawer-head h3 {
  margin: 0;
}

.cart-drawer-close,
.vf-cart-panel-close {
  width: 38px;
  height: 38px;
  font-size: 24px;
  line-height: 1;
}

.vf-floating-cart {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 56;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: #fff;
  box-shadow: 0 18px 34px rgba(6, 27, 58, .22);
  transform: translateY(-50%);
  transition: transform .22s ease, filter .22s ease;
}

.vf-floating-cart:hover {
  transform: translateY(calc(-50% - 2px));
  filter: saturate(1.08);
}

.vf-floating-cart i {
  font-size: 21px;
}

.vf-floating-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #da251d;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.vf-cart-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: rgba(6, 27, 58, .34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.vf-cart-panel-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vf-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 59;
  width: min(420px, calc(100vw - 24px));
  height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 16px;
  padding: 22px 20px 20px;
  background: var(--white);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 48px rgba(6, 27, 58, .18);
  transform: translateX(100%);
  transition: transform .26s ease;
}

.vf-cart-panel.is-open {
  transform: translateX(0);
}

.vf-cart-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.vf-cart-panel-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.vf-cart-panel-head strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.vf-cart-panel-body {
  overflow: auto;
  min-height: 0;
  padding-right: 4px;
}

.vf-cart-panel-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.vf-cart-panel-thumb {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  overflow: hidden;
}

.vf-cart-panel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-cart-panel-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.vf-cart-panel-info strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.vf-cart-panel-info small,
.vf-cart-panel-info span {
  color: var(--muted);
  line-height: 1.45;
}

.vf-cart-panel-info span {
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 650;
}

.vf-cart-panel-qty {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  white-space: nowrap;
}

.vf-cart-panel-qty em {
  min-width: 26px;
  color: var(--ink);
  font-style: normal;
  font-weight: 650;
  text-align: center;
}

.vf-cart-panel-qty button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.vf-cart-panel-qty button:hover {
  border-color: rgba(30, 115, 190, .35);
  color: var(--blue-700);
}

.vf-cart-panel-qty .vf-cart-panel-remove {
  border-color: #ffd8d8;
  color: #da251d;
}

.vf-cart-panel-qty .vf-cart-panel-remove:hover {
  border-color: #da251d;
  background: #fff8f8;
  color: #b91c1c;
}

.vf-cart-panel-remove.is-confirming {
  opacity: .55;
}

.vf-cart-panel-confirm,
.cart-row-confirm {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid #ffd8d8;
  border-radius: 14px;
  background: #fff8f8;
  color: #7f1d1d;
  font-size: 12px;
  font-weight: 650;
}

.vf-cart-panel-confirm {
  grid-column: 2 / -1;
  justify-self: end;
}

.vf-cart-panel-confirm.is-open,
.cart-row-confirm.is-open {
  display: inline-flex;
}

.vf-cart-panel-confirm button,
.cart-row-confirm button {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #d7e3f1;
  border-radius: 999px;
  background: #fff;
  color: #43536a;
  font-size: 12px;
  font-weight: 650;
}

.vf-cart-panel-confirm button:first-of-type,
.cart-row-confirm button:first-of-type {
  border-color: #da251d;
  background: #da251d;
  color: #fff;
}

.cart-row-confirm {
  margin-top: 8px;
}

.cart-row-remove.is-confirming {
  opacity: .55;
}

.vf-cart-panel-summary {
  display: grid;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.vf-cart-panel-summary>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.vf-cart-panel-summary strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

.vf-global-cart-discount.is-hidden {
  display: none;
}

.vf-global-cart-discount strong {
  color: #138a36;
}

.vf-cart-panel-total strong {
  color: var(--blue-700);
  font-size: 18px;
}

.vf-cart-panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vf-cart-panel-actions .btn {
  width: 100%;
}

.vf-cart-panel-empty {
  margin: 0;
  padding: 26px 0;
  color: var(--muted);
  text-align: center;
  font-weight: 650;
}

body.com-gio-hang {
  background:
    radial-gradient(circle at top left, rgba(35, 183, 255, .08), transparent 30rem),
    linear-gradient(180deg, #f7faff 0%, #eef4fb 46%, #fff 100%);
}

body.com-gio-hang .d-none {
  display: none !important;
}

body.com-gio-hang .floating-contact,
body.com-gio-hang .vf-floating-cart,
body.com-gio-hang .vf-cart-panel,
body.com-gio-hang .vf-cart-panel-backdrop,
body.com-gio-hang .vf-cart-backdrop {
  display: none !important;
}

body.com-gio-hang .wrap-content.padding-top-bottom {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

body.com-gio-hang .wrap-cart {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(6, 27, 58, .08);
}

body.com-gio-hang .cart-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

body.com-gio-hang .cart-page-head-copy {
  min-width: 0;
}

body.com-gio-hang .cart-page-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 8px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(15, 86, 166, .08);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

body.com-gio-hang .cart-page-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 950;
}

body.com-gio-hang .cart-page-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

body.com-gio-hang .cart-continue-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(15, 86, 166, .22);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: .2s ease;
}

body.com-gio-hang .cart-continue-link:hover {
  border-color: var(--blue-700);
  background: rgba(15, 86, 166, .08);
}

body.com-gio-hang .wrap-cart>.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .48fr);
  gap: 24px;
  margin: 0;
}

body.com-gio-hang .wrap-cart>.row.cart-empty-row {
  display: flex;
  justify-content: center;
}

body.com-gio-hang .wrap-cart>.row>[class*="col-"] {
  width: 100%;
  max-width: none;
  padding: 0;
}

body.com-gio-hang .top-cart {
  border-right: 0;
  min-width: 0;
}

body.com-gio-hang .bottom-cart {
  min-width: 0;
}

body.com-gio-hang .title-cart {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
  font-weight: 650;
  text-transform: none;
}

body.com-gio-hang .list-procart {
  display: grid;
  gap: 12px;
}

body.com-gio-hang .procart {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

body.com-gio-hang .procart .row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1.18fr) minmax(108px, .52fr) 128px minmax(130px, .62fr);
  gap: 16px;
  align-items: center;
  margin: 0;
}

body.com-gio-hang .procart .row>[class*="col-"] {
  width: 100%;
  max-width: none;
  padding: 0;
}

body.com-gio-hang .procart-label {
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  background: #f6f9fc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

body.com-gio-hang .pic-procart {
  min-width: 0;
}

body.com-gio-hang .pic-procart img {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 14px;
  background: var(--soft);
}

body.com-gio-hang .cart-item-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  position: relative;
}

body.com-gio-hang .name-procart {
  flex: 1 1 auto;
  margin: 0;
}

body.com-gio-hang .name-procart a {
  display: inline-block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

body.com-gio-hang .del-procart {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #ffd8d8;
  border-radius: 999px;
  background: #fff7f7;
  color: #c5221f;
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
}

body.com-gio-hang .del-procart.is-confirming {
  opacity: .45;
}

body.com-gio-hang .cart-delete-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.com-gio-hang .cart-delete-confirm {
  grid-column: 1 / -1;
  justify-self: end;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ffd8d8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(6, 27, 58, .08);
  white-space: nowrap;
}

body.com-gio-hang .cart-delete-confirm.is-open {
  display: inline-flex;
}

body.com-gio-hang .cart-delete-confirm span {
  color: #34445d;
  font-size: 12px;
  font-weight: 650;
}

body.com-gio-hang .cart-delete-confirm-btn,
body.com-gio-hang .cart-delete-cancel {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

body.com-gio-hang .cart-delete-confirm-btn {
  background: #c5221f;
  color: #fff;
}

body.com-gio-hang .cart-delete-cancel {
  border-color: #d7e3f1;
  background: #fff;
  color: #43536a;
}

body.com-gio-hang .properties-procart {
  margin-top: 8px;
}

body.com-gio-hang .properties-procart p,
body.com-gio-hang .properties-procart strong {
  color: var(--muted);
  font-size: 13px;
}

body.com-gio-hang .cart-unit-procart {
  min-width: 0;
}

body.com-gio-hang .cart-metric-label {
  display: none;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.com-gio-hang .quantity-counter-procart {
  display: grid;
  grid-template-columns: 40px minmax(48px, 1fr) 40px;
  align-items: center;
  max-width: 138px;
  min-height: 44px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #f8fbff;
}

body.com-gio-hang .counter-procart {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  cursor: pointer;
}

body.com-gio-hang .quantity-counter-procart .quantity-procart {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  text-align: center;
  outline: 0;
  appearance: textfield;
  -moz-appearance: textfield;
}

body.com-gio-hang .quantity-counter-procart .quantity-procart::-webkit-outer-spin-button,
body.com-gio-hang .quantity-counter-procart .quantity-procart::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.com-gio-hang .price-procart {
  width: 100%;
  text-align: right;
}

body.com-gio-hang .price-new-cart {
  color: var(--blue-700);
  font-size: 16px;
  font-weight: 650;
}

body.com-gio-hang .price-old-cart {
  margin-top: 3px;
  color: #94a3b8;
}

body.com-gio-hang .money-procart {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

body.com-gio-hang .total-procart {
  margin: 0;
  padding: 14px 18px;
  border: 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

body.com-gio-hang .cart-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

body.com-gio-hang .code-coupon {
  padding: 0 18px !important;
  text-indent: 6px;
  font-size: 15px;
}

body.com-gio-hang .code-coupon::placeholder {
  color: #7b8a9d;
}

body.com-gio-hang .total-procart:first-child {
  border-top: 0;
}

body.com-gio-hang .total-procart p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

body.com-gio-hang .total-procart p:last-child,
body.com-gio-hang .total-procart .total-price {
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

body.com-gio-hang .money-procart>.total-procart:last-child {
  background: #fff8f8;
}

body.com-gio-hang .money-procart>.total-procart:last-child p {
  color: #7f1d1d;
}

body.com-gio-hang .money-procart>.total-procart:last-child .total-price {
  color: #da251d;
  font-size: 20px;
  letter-spacing: 0;
}

body.com-gio-hang .cart-discount-line .total-price {
  color: #138a36;
}

body.com-gio-hang .voucher-message-cart {
  min-height: 0;
  margin: 0;
  padding: 0 18px 12px;
  background: #fff;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

body.com-gio-hang .voucher-message-cart.text-danger {
  color: #c5221f !important;
}

body.com-gio-hang .voucher-message-cart.text-success {
  color: #138a36 !important;
}

body.com-gio-hang .voucher-message-cart:empty {
  display: none;
}

body.com-gio-hang .section-cart {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 27, 58, .06);
}

body.com-gio-hang .information-cart {
  margin: 0;
}

body.com-gio-hang .information-cart .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

body.com-gio-hang .information-cart .row>[class*="col-"] {
  width: 100%;
  max-width: none;
  padding: 0;
}

body.com-gio-hang .input-cart.col-md-12 {
  grid-column: 1 / -1;
}

body.com-gio-hang .input-cart {
  margin-bottom: 10px;
}

body.com-gio-hang .form-floating,
body.com-gio-hang .form-floating-cus {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

body.com-gio-hang .form-floating label,
body.com-gio-hang .form-floating-cus label {
  position: static;
  top: auto;
  left: auto;
  order: -1;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  transform: none !important;
  opacity: 1 !important;
  color: #43536a;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
  pointer-events: auto;
}

body.com-gio-hang .form-control,
body.com-gio-hang .form-select,
body.com-gio-hang .select2-selection {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d7e3f1;
  border-color: #d7e3f1;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

body.com-gio-hang .form-floating>.form-control,
body.com-gio-hang .form-floating>.form-select,
body.com-gio-hang .form-floating-cus>.form-control,
body.com-gio-hang .form-floating-cus>.form-select {
  height: auto;
  padding: .85rem 1rem !important;
  line-height: 1.35;
}

body.com-gio-hang .form-control::placeholder,
body.com-gio-hang .code-coupon::placeholder {
  color: #7c8ba0;
  opacity: 1;
}

body.com-gio-hang .form-floating>.form-control::placeholder,
body.com-gio-hang .form-floating-cus>.form-control::placeholder,
body.com-gio-hang textarea.form-control::placeholder {
  color: #7c8ba0 !important;
  opacity: 1 !important;
}

body.com-gio-hang textarea.form-control {
  min-height: 110px;
  padding: .95rem 1rem !important;
}

body.com-gio-hang .invalid-feedback {
  display: none;
  margin-top: 6px;
  color: #be123c;
  font-size: 13px;
}

body.com-gio-hang .was-validated .form-control:invalid~.invalid-feedback,
body.com-gio-hang .was-validated .form-select:invalid~.invalid-feedback {
  display: block;
}

body.com-gio-hang .payments-cart {
  position: relative;
  margin: 0 0 10px;
  padding-left: 0;
}

body.com-gio-hang .payments-cart .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body.com-gio-hang .payments-cart .form-check-input:checked+.payments-label {
  border-color: rgba(15, 86, 166, .18);
  background: rgba(15, 86, 166, .08);
  color: var(--blue-700) !important;
}

body.com-gio-hang .payments-cart .form-check-input:checked+.payments-label .payments-marker {
  border-color: var(--blue-700);
  background: var(--blue-700);
}

body.com-gio-hang .payments-label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafd;
  color: var(--ink) !important;
  font-weight: 650;
  cursor: pointer;
  transition: .2s ease;
}

body.com-gio-hang .payments-label.active {
  border-color: rgba(15, 86, 166, .18);
  background: rgba(15, 86, 166, .08);
  color: var(--blue-700) !important;
}

body.com-gio-hang .payments-marker {
  width: 20px;
  height: 20px;
  border: 2px solid #b8c7d9;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

body.com-gio-hang .payments-label.active .payments-marker {
  border-color: var(--blue-700);
  background: var(--blue-700);
}

body.com-gio-hang .payments-copy strong {
  display: block;
  color: inherit;
  font-size: 14px;
  line-height: 1.4;
}

body.com-gio-hang .payments-info {
  display: none;
  color: #48576d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

body.com-gio-hang .payments-info.active {
  display: block;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

body.com-gio-hang .btn-cart.btn,
body.com-gio-hang input.btn-cart {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 650;
}

body.com-gio-hang .apply-voucher-cart.btn,
body.com-gio-hang input[name="thanhtoan"].btn-cart {
  border-color: var(--blue-700);
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 14px 24px rgba(15, 86, 166, .18);
}

body.com-gio-hang .remove-voucher-cart.btn {
  border-color: #d7e3f1;
  background: #fff;
  color: #43536a;
  box-shadow: none;
}

body.com-gio-hang .box-dktt {
  margin-top: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafd;
}

body.com-gio-hang .empty-cart {
  width: min(620px, 100%);
  margin: 40px auto 10px;
  padding: 42px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(6, 27, 58, .06);
  text-align: center;
}

body.com-gio-hang .empty-cart-icon {
  width: 74px;
  height: 74px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--blue-700);
}

body.com-gio-hang .empty-cart p {
  margin: 16px 0 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}

body[data-page="order-success"] {
  background:
    radial-gradient(circle at 18% 10%, rgba(37, 191, 111, .14), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(30, 115, 190, .12), transparent 28rem),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 48%, #f7fafc 100%);
}

body[data-page="order-success"] .floating-contact,
body[data-page="order-success"] .vf-floating-cart,
body[data-page="order-success"] .vf-cart-panel,
body[data-page="order-success"] .vf-cart-panel-backdrop,
body[data-page="order-success"] .vf-cart-backdrop {
  display: none !important;
}

.order-success-page {
  padding: 54px 0 78px;
}

.order-success-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.order-success-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: 34px;
  border: 1px solid #dbe8f5;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 247, 255, .94));
  box-shadow: 0 22px 52px rgba(15, 36, 64, .09);
}

.order-success-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(28, 167, 89, .12);
  color: #14854a;
  font-size: 13px;
  font-weight: 650;
}

.order-success-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #10203a;
  font-size: 42px;
  line-height: 1.12;
}

.order-success-copy p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #52657d;
  font-size: 16px;
  line-height: 1.65;
}

.order-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.order-success-receipt {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 320px;
  padding: 26px;
  border: 1px solid #dbe8f5;
  border-radius: 8px;
  background: #10203a;
  color: #fff;
  box-shadow: 0 22px 52px rgba(15, 36, 64, .16);
  text-align: center;
}

.order-success-mark {
  display: inline-grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #25bf6f;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 18px 30px rgba(37, 191, 111, .32);
}

.order-success-mark.is-empty {
  background: #eef5ff;
  color: var(--blue-700);
  box-shadow: none;
}

.order-success-receipt span {
  color: #b7c8de;
  font-size: 13px;
  font-weight: 650;
}

.order-success-receipt strong {
  margin-top: 6px;
  color: #fff;
  font-size: 34px;
  line-height: 1.1;
}

.order-success-receipt p {
  margin: 8px 0 16px;
  color: #dbe8f5;
}

.order-success-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #9bd7ff;
  font-weight: 650;
}

.order-success-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.order-success-overview>div {
  padding: 20px;
  border: 1px solid #dbe8f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 36, 64, .07);
}

.order-success-overview span,
.order-success-section-head span,
.order-success-info span,
.order-success-total span {
  color: #6a7c92;
  font-size: 13px;
  font-weight: 650;
}

.order-success-overview strong {
  display: block;
  margin-top: 8px;
  color: #10203a;
  font-size: 24px;
  line-height: 1.2;
}

.order-success-overview p {
  margin: 6px 0 0;
  color: #6a7c92;
  line-height: 1.5;
}

.order-success-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: start;
}

.order-success-main,
.order-success-info,
.order-success-total,
.order-success-empty {
  border: 1px solid #dbe8f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 36, 64, .08);
}

.order-success-main {
  overflow: hidden;
}

.order-success-section-head {
  padding: 22px 24px 0;
}

.order-success-section-head h2,
.order-success-info h2,
.order-success-total h2 {
  margin: 5px 0 0;
  color: #10203a;
  font-size: 20px;
  line-height: 1.3;
}

.order-success-items {
  display: grid;
  gap: 0;
  padding: 10px 24px 24px;
}

.order-success-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 120px 140px;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #e7edf5;
}

.order-success-item:last-child {
  border-bottom: 0;
}

.order-success-thumb {
  width: 82px;
  height: 82px;
  padding: 8px;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #f8fbff;
}

.order-success-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-success-item-copy h3 {
  margin: 0;
  color: #10203a;
  font-size: 16px;
  line-height: 1.35;
}

.order-success-item-copy p,
.order-success-item-copy small,
.order-success-item-meta small,
.order-success-muted {
  margin: 6px 0 0;
  color: #6a7c92;
  line-height: 1.5;
}

.order-success-item-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.order-success-item-meta span {
  color: #10203a;
  font-weight: 650;
}

.order-success-item>strong {
  color: #da251d;
  font-size: 16px;
  text-align: right;
}

.order-success-side {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.order-success-info,
.order-success-total {
  padding: 22px;
}

.order-success-info p,
.order-success-total p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 12px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid #e7edf5;
}

.order-success-info strong,
.order-success-total strong {
  color: #10203a;
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
  word-break: break-all;
}

.order-success-grand strong {
  color: #da251d;
  font-size: 22px;
}

.order-success-empty {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 30px auto;
  padding: 46px 28px;
  text-align: center;
}

.order-success-empty h1 {
  margin: 0;
  color: #10203a;
  font-size: 34px;
  line-height: 1.2;
}

.order-success-empty p {
  max-width: 540px;
  margin: 14px 0 0;
  color: #52657d;
  line-height: 1.65;
}

body.dark[data-page="order-success"] {
  background:
    radial-gradient(circle at 18% 10%, rgba(37, 191, 111, .1), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(88, 166, 255, .12), transparent 28rem),
    #071426;
  color: #e9f4ff;
}

body.dark .order-success-copy,
body.dark .order-success-overview>div,
body.dark .order-success-main,
body.dark .order-success-info,
body.dark .order-success-total,
body.dark .order-success-empty {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(15, 32, 58, .94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

body.dark .order-success-copy h1,
body.dark .order-success-overview strong,
body.dark .order-success-section-head h2,
body.dark .order-success-info h2,
body.dark .order-success-total h2,
body.dark .order-success-item-copy h3,
body.dark .order-success-item-meta span,
body.dark .order-success-info strong,
body.dark .order-success-total strong,
body.dark .order-success-empty h1 {
  color: #f4f9ff;
}

body.dark .order-success-copy p,
body.dark .order-success-overview p,
body.dark .order-success-overview span,
body.dark .order-success-section-head span,
body.dark .order-success-info span,
body.dark .order-success-total span,
body.dark .order-success-item-copy p,
body.dark .order-success-item-copy small,
body.dark .order-success-item-meta small,
body.dark .order-success-muted,
body.dark .order-success-empty p {
  color: #b8c9df;
}

body.dark .order-success-thumb {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

body.dark .order-success-item,
body.dark .order-success-info p,
body.dark .order-success-total p {
  border-color: rgba(255, 255, 255, .12);
}

@media (max-width: 1024px) {

  .order-success-hero,
  .order-success-layout {
    grid-template-columns: 1fr;
  }

  .order-success-side {
    position: static;
  }

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

@media (max-width: 767px) {
  .order-success-page {
    padding: 28px 0 48px;
  }

  .order-success-copy {
    min-height: auto;
    padding: 24px;
  }

  .order-success-copy h1 {
    font-size: 30px;
  }

  .order-success-receipt {
    min-height: auto;
  }

  .order-success-overview {
    grid-template-columns: 1fr;
  }

  .order-success-item {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }

  .order-success-thumb {
    width: 70px;
    height: 70px;
  }

  .order-success-item-meta {
    justify-items: start;
    grid-column: 2;
  }

  .order-success-item>strong {
    grid-column: 2;
    text-align: left;
  }

  .order-success-info p,
  .order-success-total p {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .order-success-info strong,
  .order-success-total strong {
    text-align: left;
  }

  .order-success-actions .btn {
    width: 100%;
  }
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.cart-row-side {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.cart-row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.cart-row-actions button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #1e2d3d;
  cursor: pointer;
}

.cart-row-actions .cart-row-remove {
  width: 28px;
  min-width: 28px;
  padding: 0;
  border-color: #ffd8d8;
  border-radius: 50%;
  background: #fff7f7;
  color: #c5221f;
  font-size: 12px;
  font-weight: 650;
}

.cart-row-actions em {
  min-width: 18px;
  text-align: center;
  font-style: normal;
  font-weight: 650;
}

.cart-voucher {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f9fc;
}

.cart-voucher-head {
  display: grid;
  gap: 3px;
  margin-bottom: 10px;
}

.cart-voucher-head span,
.cart-voucher-message {
  color: #657386;
  font-size: 13px;
  line-height: 1.5;
}

.cart-voucher-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

.cart-voucher-row input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  text-transform: uppercase;
}

.cart-voucher-row .btn {
  min-height: 42px;
  padding: 0 14px;
}

.cart-voucher-remove {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.cart-voucher-remove.is-hidden,
.cart-discount.is-hidden {
  display: none;
}

.cart-voucher-message {
  min-height: 20px;
  margin: 8px 0 0;
}

.cart-voucher-message.is-error {
  color: #dc2626;
  font-weight: 650;
}

.cart-voucher-message.is-success {
  color: #138a36;
  font-weight: 650;
}

.cart-discount strong {
  color: #138a36;
}

.cart-total-line {
  border-bottom: 0;
}

.cart-total-line strong {
  color: #1e73be;
}

.cart-lead-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.cart-lead-form .field-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cart-lead-form .field label {
  font-size: 12px;
}

.cart-lead-form input,
.cart-lead-form textarea {
  min-height: 42px;
  border-radius: 12px;
}

.cart-lead-form textarea {
  min-height: 72px;
}

.cart-session-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.cart-session-actions .btn {
  justify-content: center;
  width: 100%;
}

.cart-clear-confirm {
  display: none;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ffd8d8;
  border-radius: 14px;
  background: #fff8f8;
  color: #7f1d1d;
  font-size: 12px;
  font-weight: 650;
}

.cart-clear-confirm.is-open {
  display: inline-flex;
}

.cart-clear-confirm button {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #d7e3f1;
  border-radius: 999px;
  background: #fff;
  color: #43536a;
  font-size: 12px;
  font-weight: 650;
}

.cart-clear-confirm button:first-of-type {
  border-color: #da251d;
  background: #da251d;
  color: #fff;
}

.cart-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

.voucher-message-cart {
  min-height: 20px;
  margin: 6px 0 10px;
  font-size: 13px;
  font-weight: 650;
}

.form-message.is-error {
  color: #dc2626 !important;
  font-weight: 650;
}

.form-message.is-success {
  color: #138a36 !important;
  font-weight: 650;
}

button.is-loading {
  opacity: .72;
  cursor: wait;
}

.member-summary {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid rgba(30, 115, 190, .18);
  border-radius: 14px;
  background: rgba(30, 115, 190, .07);
  color: var(--ink);
}

.member-summary span {
  color: var(--muted);
  font-size: 14px;
}

.member-dashboard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

.member-tier-card,
.member-benefit-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(12, 34, 62, .07);
}

.member-tier-card {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.member-tier-card.is-current {
  border-color: rgba(30, 115, 190, .35);
  background: linear-gradient(135deg, rgba(30, 115, 190, .1), rgba(255, 255, 255, .96));
}

.member-tier-card strong {
  font-size: 24px;
  line-height: 1.15;
}

.member-tier-card small,
.member-empty,
.member-panel-head span,
.member-level-grid article p,
.member-birthday-code small,
.member-voucher-history small {
  color: var(--muted);
  line-height: 1.55;
}

.member-benefit-panel {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
}

.member-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.member-panel-head strong {
  font-size: 20px;
}

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

.member-level-grid article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
}

.member-level-grid article.active {
  border-color: rgba(30, 115, 190, .42);
  box-shadow: inset 0 0 0 1px rgba(30, 115, 190, .18);
}

.member-level-grid article>span {
  width: max-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(30, 115, 190, .1);
  color: #1e73be;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.member-level-grid h3,
.member-level-grid p,
.member-level-grid ul {
  margin: 0;
}

.member-level-grid ul {
  padding-left: 18px;
}

.member-birthday-code,
.member-voucher-history div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px dashed rgba(30, 115, 190, .35);
  border-radius: 14px;
  background: rgba(30, 115, 190, .06);
}

.member-birthday-code strong {
  font-size: 28px;
  letter-spacing: .04em;
}

.member-birthday-code.is-template {
  background: #f8fbff;
  border-style: solid;
}

.member-voucher-history {
  display: grid;
  gap: 10px;
}

.member-voucher-history div {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.member-voucher-history small {
  grid-column: 1 / -1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(4, 15, 32, .66);
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.open {
  display: grid;
}

.modal-card {
  background: var(--white);
  color: var(--ink);
  width: min(760px, 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal-body {
  padding: 28px;
}

.modal-close {
  float: right;
}

.site-footer {
  background: linear-gradient(135deg, #061b3a, #071426);
  color: #dcecff;
  margin-top: 80px;
}

.vf-light-footer {
  background: #f7f7f7;
  color: #1e2d3d;
  margin-top: 0;
}

.vf-light-footer .footer-grid {
  padding: 48px 0 18px;
}

.vf-light-footer .footer-grid h4 {
  color: #1e2d3d;
  text-transform: uppercase;
}

.vf-light-footer .footer-grid p,
.vf-light-footer .footer-grid a {
  color: #5f6b78;
  font-size: 14px;
}

.vf-light-footer .footer-bottom {
  border-top: 1px solid #e3e8ee;
  text-align: center;
  color: #7d8792;
}

.footer-contact-row {
  border-top: 1px solid #e3e8ee;
  padding-top: 28px !important;
}

.footer-main-row {
  grid-template-columns: 1.25fr .72fr .72fr .9fr .62fr;
  gap: 38px;
}

.footer-badges {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-end;
}

.footer-badges img {
  width: 120px;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.footer-logo-img {
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.footer-copy p {
  margin: 0 0 12px;
}

.footer-info-company-content p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 0 12px;
  line-height: 1.55;
}

.footer-info-company-content i {
  min-width: 18px;
  padding-top: 2px;
  color: currentColor;
}

.footer-social-img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  object-fit: contain;
  vertical-align: -2px;
}

.footer-newsletter {
  grid-column: span 2;
}

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

.footer-subscribe {
  display: flex;
  position: relative;
  width: min(380px, 100%);
  background: #fff;
  border: 1px solid #dce4ed;
  border-radius: 999px;
  margin: 0 0 34px;
  overflow: visible;
}

.footer-subscribe.form-newsletter {
  align-items: stretch;
  justify-content: flex-start;
  width: min(380px, 100%);
  height: 48px;
  padding: 0;
}

.footer-subscribe input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 48px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: transparent;
  padding: 0 18px;
  outline: 0;
  box-shadow: none;
  background-image: none;
}

.footer-subscribe input[type="email"]:focus {
  background: transparent;
  box-shadow: none;
  background-image: none;
}

.footer-subscribe button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  width: 50px;
  height: 48px;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: #1e73be;
  color: #fff;
  cursor: pointer;
  outline: 0;
  transition: background .2s ease, box-shadow .2s ease;
}

.footer-subscribe button:hover {
  background: #155b9a;
}

.footer-subscribe button:focus {
  outline: 0;
  box-shadow: none;
}

.footer-subscribe button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .86);
}

.footer-subscribe .invalid-feedback {
  position: absolute;
  left: 18px;
  top: calc(100% + 6px);
  width: auto;
  margin: 0;
  color: #dc3545;
  font-size: 12px;
  line-height: 1.35;
}

.footer-subscribe.was-validated input[type="email"]:invalid {
  box-shadow: inset 0 0 0 1px #dc3545;
  background-image: none;
  padding-right: 18px;
}

.footer-subscribe .form-message {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  margin: 0;
  color: #1e73be;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 30px;
  padding: 58px 0;
}

.footer-main-row {
  grid-template-columns: 1.25fr .72fr .72fr .9fr .62fr;
  gap: 38px;
}

.footer-grid h4 {
  color: #fff;
  margin: 0 0 16px;
}

.footer-grid p,
.footer-grid a {
  color: #b9cbe2;
  line-height: 1.9;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  color: #a7bad2;
}

.vf-light-footer .footer-grid a:hover {
  color: #055abd;
}

.floating-contact {
  position: fixed;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 55;
}

.floating-contact a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 14px 28px rgba(6, 27, 58, .22);
}

body[data-page="home"] .floating-contact {
  display: none;
}

body[data-page="detail"] .floating-contact {
  display: none;
}

@media (max-width: 640px) {
  body[data-page="form"] .floating-contact {
    display: none;
  }

  body[data-page="service"] .floating-contact,
  body[data-page="news"] .floating-contact {
    display: none;
  }

  .news-category-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-category-title .news-more {
    white-space: nowrap;
  }
}

body[data-page="home"] .theme-only {
  display: inline-grid;
}

body[data-page="home"] .header-test-drive {
  min-width: 188px;
  min-height: 45px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 15px;
}

body[data-page="home"] .nav-wrap {
  justify-content: flex-start;
}

body[data-page="home"] .nav-menu {
  margin-left: 30px;
}

body[data-page="home"] .nav-actions {
  margin-left: auto;
}

/* Homepage matched to Figma export */
.figma-home {
  background: #fff;
  color: #263544;
  overflow: hidden;
}

.home-container {
  width: min(1290px, calc(100vw - 140px));
  margin: 0 auto;
}

.figma-hero {
  position: relative;
  aspect-ratio: 1440 / 580;
  overflow: hidden;
}

.home-hero-slider {
  position: absolute;
  inset: 0;
  background: #e9eef4;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.home-hero-slider.is-dragging {
  cursor: grabbing;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease, transform 1.2s ease;
  transform: scale(1.015);
}

.home-hero-slider.is-dragging .home-hero-slide {
  transition-duration: .28s;
}

.home-hero-slider.is-dragging .home-hero-slide.active {
  transform: translateX(var(--home-hero-drag-x, 0px)) scale(1.005);
}

.home-hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.figma-hero img,
.home-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  max-width: 100%;
}

.home-hero-caption {
  position: absolute;
  left: clamp(22px, 7vw, 108px);
  bottom: clamp(52px, 10vw, 118px);
  display: grid;
  max-width: min(560px, calc(100vw - 48px));
  gap: 10px;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .38);
}

.home-hero-caption strong {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 650;
}

.home-hero-caption small {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

.home-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: inline-flex;
  gap: 10px;
  transform: translateX(-50%);
}

.home-hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

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

.home-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  background: rgba(7, 18, 35, .32);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%) scale(.94);
  backdrop-filter: blur(10px);
  transition: opacity .22s ease, transform .22s ease, background .22s ease, border-color .22s ease;
}

.home-hero-arrow:hover,
.home-hero-arrow:focus-visible {
  background: rgba(218, 37, 29, .92);
  border-color: rgba(255, 255, 255, .86);
  outline: 0;
}

.home-hero-arrow-prev {
  left: clamp(18px, 4vw, 58px);
}

.home-hero-arrow-next {
  right: clamp(18px, 4vw, 58px);
}

.home-hero-slider:hover .home-hero-arrow,
.home-hero-slider:focus-within .home-hero-arrow {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

@media (hover: none) {
  .home-hero-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@media (max-width: 575px) {
  .home-hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .home-hero-arrow-prev {
    left: 12px;
  }

  .home-hero-arrow-next {
    right: 12px;
  }
}

.home-social {
  position: fixed;
  right: 34px;
  top: 240px;
  z-index: 45;
  display: grid;
  gap: 12px;
}

.home-social a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1e8be2;
  color: #fff;
  border: 5px solid rgba(255, 255, 255, .85);
  box-shadow: 0 8px 18px rgba(20, 94, 160, .25);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.home-social a:hover {
  transform: translateX(-6px) scale(1.08);
  background: #0a63bd;
  box-shadow: 0 18px 30px rgba(20, 94, 160, .34);
}

.home-tools-section {
  padding: 6px 0 58px;
  background: #fff;
}

.home-tools-title {
  margin: 0 0 28px;
  color: #303840;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 650;
}

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

.home-tools a {
  min-height: 206px;
  display: grid;
  place-items: center;
  gap: 22px;
  padding: 26px 18px 24px;
  color: #0876df;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.home-tools a.no-visual {
  align-content: center;
  min-height: 158px;
}

.home-tool-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: #0b78df;
  font-size: 58px;
}

.home-tools img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(35%) sepia(88%) saturate(1749%) hue-rotate(190deg) brightness(89%) contrast(91%);
  transition: filter .25s ease;
}

.home-tool-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.home-tool-copy strong {
  color: inherit;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 650;
}

.home-tool-copy small {
  color: #5b6b7c;
  font-size: 13px;
  line-height: 1.45;
}

.home-tools a:hover {
  background: #fff;
  border-color: rgba(30, 115, 190, .28);
  color: #0a63bd;
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(30, 115, 190, .14);
}

.home-tools a:hover img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(98%) saturate(1668%) hue-rotate(190deg) brightness(90%) contrast(95%);
}

.home-title {
  margin: 0;
  text-align: center;
  font-size: 40px;
  line-height: 1.1;
  color: #4a4a4a;
  font-weight: 650;
}

.home-cars-section {
  padding: 70px 0 62px;
}

.home-pills {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 22px 0 42px;
}

.home-pills button {
  border: 1px solid #d8e5f2;
  border-radius: 999px;
  padding: 12px 34px;
  background: #fff;
  color: #4c5f72;
  font-weight: 650;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease;
}

.home-pills button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(30, 115, 190, .16);
}

.home-pills button.active {
  background: #1e73be;
  color: #fff;
  border-color: #1e73be;
  box-shadow: 0 12px 24px rgba(30, 115, 190, .24);
}

.home-line-title {
  color: #1e73be;
  font-size: 26px;
  font-weight: 650;
  margin-bottom: 28px;
}

.home-car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.home-car-card {
  border: 1px solid #dfe8f1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(33, 73, 112, .08);
  min-height: 585px;
  padding: 30px 26px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .34s cubic-bezier(.2, .8, .2, 1), box-shadow .34s ease, border-color .34s ease;
}

.home-car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(30, 115, 190, .12), transparent 25%);
  opacity: 0;
  transition: opacity .32s ease;
  pointer-events: none;
}

.home-car-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, .75) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: .72s ease;
  pointer-events: none;
}

.home-car-card:hover {
  transform: translateY(-12px);
  border-color: rgba(30, 115, 190, .38);
  box-shadow: 0 24px 44px rgba(33, 73, 112, .14);
}

.home-car-card:hover::before {
  opacity: 1;
}

.home-car-card:hover::after {
  transform: translateX(120%);
}

.home-car-card.is-hidden {
  display: none;
}

.home-car-grid.is-switching .home-car-card:not(.is-hidden) {
  animation: homeCardIn .45s ease both;
}

.home-car-img {
  /* height: 250px; */
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  color: inherit;
  text-decoration: none;
}

.home-car-img img {
  /* max-height: 210px; */
  /* object-fit: contain; */
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .12));
  transition: transform .36s ease, filter .36s ease;
}

.home-car-card:hover .home-car-img img {
  transform: translateY(-10px) scale(1.08);
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, .17));
}

.home-car-card h3 {
  margin: 10px 0 4px;
  color: #405268;
  font-size: 22px;
  font-weight: 650;
  position: relative;
  z-index: 1;
}

.home-car-card h3 a,
.shop-body h3 a,
.news-card h3 a,
.service-card-pro h3 a,
.home-news-grid h3 a,
.home-event-feature h3 a,
.home-service-list h3 a,
.home-charge-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.home-car-card h3 a:hover,
.shop-body h3 a:hover,
.news-card h3 a:hover,
.service-card-pro h3 a:hover,
.home-news-grid h3 a:hover,
.home-event-feature h3 a:hover,
.home-service-list h3 a:hover,
.home-charge-grid h3 a:hover {
  color: var(--blue-700);
}

.home-car-card p {
  margin: 0 0 16px;
  color: #1e73be;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.home-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  color: #748093;
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.home-specs b {
  color: #34465a;
  font-size: 15px;
}

.home-car-card>strong {
  display: block;
  color: #1e73be;
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.home-card-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.home-card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 650;
  border: 1px solid #1e73be;
  color: #1e73be;
  position: relative;
  z-index: 1;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.home-card-actions a:hover {
  transform: translateY(-3px);
}

.home-card-actions a i {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 13px;
}

.home-card-actions a:first-child {
  background: #1e73be;
  color: #fff;
}

.home-card-actions a:first-child i {
  background: #fff;
  color: #1e73be;
}

.home-service-block {
  background: linear-gradient(115deg, #fff 0%, #fff 48%, #f4f7fb 48%, #fff 100%);
  padding: 58px 0;
}

.home-service-grid {
  display: grid;
  grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 56px;
}

.home-service-list {
  display: grid;
  gap: 34px;
}

.home-service-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 540px;
  transition: transform .28s ease;
}

.home-service-list article.has-icon {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
}

.home-service-list article:hover {
  transform: translateX(8px);
}

.home-service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #1e73be;
}

.home-service-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.home-service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-service-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.home-service-list h3 {
  margin: 0 0 8px;
  color: #43556a;
  font-size: 24px;
  line-height: 1.24;
}

.home-service-list p {
  margin: 0 0 12px;
  color: #68768a;
  line-height: 1.65;
  max-width: 100%;
}

.home-service-list .home-service-cta {
  display: inline-flex;
  justify-self: start;
  gap: 8px;
  align-items: center;
  color: #1e73be;
  border: 1px solid #1e73be;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 650;
}

.home-service-list .home-service-cta:hover {
  background: rgba(30, 115, 190, .08);
}

.home-service-cta-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.home-service-cta-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-service-banner {
  display: block;
}

.home-service-image img {
  width: min(100%, 680px);
  max-height: 430px;
  object-fit: cover;
  aspect-ratio: 17 / 11;
  margin: 0 auto;
}

.home-charge {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(35, 133, 205, .94) 0%, rgba(4, 76, 142, .97) 100%),
    url("../images/charging-station.jpg") center/cover no-repeat;
  padding: 58px 0 56px;
  color: #fff;
  text-align: center;
}

.home-charge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(3, 43, 86, .18), rgba(9, 93, 162, .08) 43%, rgba(0, 35, 83, .28)),
    radial-gradient(circle at 50% 112%, rgba(255, 255, 255, .16), transparent 34rem);
  pointer-events: none;
}

.home-charge .home-container {
  position: relative;
  z-index: 1;
  width: min(1254px, calc(100vw - 110px));
}

.home-charge-head {
  max-width: 1020px;
  margin: 0 auto 32px;
}

.home-charge h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 650;
  text-align: center;
  text-transform: uppercase;
}

.home-charge-head p {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .94);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

.home-news h2,
.home-events h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 38px;
  font-weight: 650;
  color: inherit;
}

.home-charge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
  max-width: 1254px;
  margin: 0 auto;
}

.home-charge-grid article {
  min-width: 0;
  display: grid;
  justify-items: center;
}

.home-charge-grid .home-charge-media {
  display: block;
  width: 100%;
  aspect-ratio: 600 / 337;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 10px;
  box-shadow: 0 22px 46px rgba(0, 35, 83, .22);
}

.home-charge-grid article:first-child .home-charge-media {
  /* outline: 4px solid #9148ff; */
  /* outline-offset: -4px; */
}

.home-charge-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  transition: transform .34s ease, box-shadow .34s ease;
}

.home-charge-grid article:hover img {
  transform: scale(1.025);
}

.home-charge-grid h3 {
  margin: 20px 0 18px;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 650;
  text-align: center;
  text-transform: uppercase;
}

.home-charge-grid h3 a:hover {
  color: #fff;
  opacity: .84;
}

.home-charge-card-desc {
  display: none;
}

.home-charge-grid .home-charge-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 148px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.home-charge-grid .home-charge-cta i {
  font-size: 16px;
  transform: rotate(-45deg);
  transform-origin: center;
}

.home-charge-grid .home-charge-cta:hover {
  background: #fff;
  color: #0f63aa;
  transform: translateY(-2px);
}

.home-news {
  padding: 70px 0 82px;
  background: #fff;
}

.home-news .home-container {
  width: min(1290px, calc(100vw - 180px));
}

.home-news h2,
.home-events h2 {
  color: #4c4c4c;
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0 0 30px;
}

.home-section-head span {
  color: #1e73be;
  font-size: 24px;
  font-weight: 650;
}

.home-section-head a {
  color: #5c6a78;
  font-weight: 650;
}

.home-charge .home-section-head span,
.home-charge .home-section-head a {
  color: #fff;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 50px;
}

.home-news-grid article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
}

.home-news-grid article>a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.home-news-grid article img {
  width: 100%;
  height: 310px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.home-news-grid article:hover img,
.home-event-feature:hover img {
  transform: translateY(-6px) scale(1.015);
  filter: saturate(1.06);
}

.home-news-grid p,
.home-event-feature p {
  color: #8490a0;
  font-size: 13px;
}

.home-news-grid p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  line-height: 1.35;
}

.home-news-grid p i:not(:first-child) {
  margin-left: 4px;
}

.home-news-grid h3,
.home-event-feature h3 {
  font-size: 20px;
  line-height: 1.45;
  color: #2d3b4c;
}

.home-news-grid h3 {
  margin: 0;
}

@media (max-width: 760px) {
  .home-news .home-container {
    width: min(100% - 28px, 680px);
  }

  .home-news-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.home-events {
  background: #fff;
  padding: 42px 0 78px;
}

.home-events .home-container {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 32%),
    #f4f4f4;
  padding: 64px 70px 74px;
}

.home-event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .98fr);
  gap: 34px;
  align-items: center;
}

.home-event-feature img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .35s ease, filter .35s ease;
}

.home-event-feature a {
  color: #1e73be;
  font-weight: 650;
}

.home-event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 34px;
  margin-top: 28px;
}

.home-event-panel {
  display: none;
  animation: homePanelIn .42s ease both;
}

.home-event-panel.active {
  display: block;
}

.home-event-list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #46576a;
  font-weight: 650;
  line-height: 1.45;
  transition: color .25s ease, transform .25s ease;
}

.home-event-list a:hover {
  color: #1e73be;
  transform: translateX(6px);
}

.home-event-list i {
  color: #1e73be;
  margin-top: 4px;
}

@keyframes homeCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes homePanelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes previewCarIn {
  from {
    opacity: .15;
    transform: translateX(24px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (hover: none),
(pointer: coarse),
(max-width: 760px) {
  :root {
    --motion-enter: 340ms;
    --hover-lift: -2px;
  }

  html {
    scroll-behavior: auto;
  }

  body.vf-motion-ready .vf-reveal {
    transform: translate3d(0, 12px, 0);
    transition-delay: 0ms;
  }

  .mega-car::after,
  .home-car-card::after {
    display: none;
  }

  .btn:hover,
  .icon-btn:hover,
  .quick-card:hover,
  .product-card:hover,
  .price-card:hover,
  .news-card:hover,
  .service-card-pro:hover,
  .shop-card:hover,
  .vf-product-card:hover,
  .part-related-card:hover,
  .mega-car:hover,
  .home-tools a:hover,
  .home-car-card:hover,
  .home-service-list article:hover,
  .home-event-list a:hover,
  .product-chip:hover,
  .product-check:hover,
  .product-reset:hover,
  .cell-filter-pill:hover,
  .cell-active-filter:hover,
  .vf-btn:hover {
    transform: none;
  }

  .mega-car:hover img,
  .home-car-card:hover .home-car-img img,
  .product-card:hover .product-media img,
  .vf-product-card:hover .vf-product-media img,
  .shop-card:hover .shop-media img,
  .home-charge-grid article:hover img,
  .home-news-grid article:hover img,
  .home-event-feature:hover img {
    transform: none;
  }

  .btn:active,
  .icon-btn:active,
  .home-tools a:active,
  .home-car-card:active,
  .shop-card:active,
  .service-card-pro:active,
  .news-card:active,
  .cell-filter-pill:active,
  .cell-active-filter:active {
    transform: translateY(var(--hover-lift));
  }

  .home-social {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }

  body.vf-motion-ready .vf-reveal,
  body.vf-motion-ready .vf-reveal[data-motion] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* VinFast Limo Green detail page */
.vf-detail {
  background: #fff;
  color: #111;
}

.vf-detail .container {
  width: min(1180px, calc(100vw - 32px));
}

.vf-hero {
  min-height: calc(100vh - 110px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0 39%, rgba(255, 255, 255, .66) 54%, rgba(232, 241, 238, .86) 100%),
    url("../images/banner-wave.jpg") center/cover no-repeat,
    linear-gradient(180deg, #f7f8f8 0%, #fff 68%, #f3f5f5 100%);
}

.vf-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(23, 115, 76, .16), transparent 24rem),
    radial-gradient(circle at 22% 70%, rgba(0, 90, 160, .10), transparent 25rem),
    linear-gradient(120deg, transparent 0 58%, rgba(9, 94, 68, .08) 58% 100%);
}

.vf-hero-inner {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: .42fr .58fr;
  align-items: center;
  gap: 22px;
  z-index: 1;
}

.vf-hero-logo {
  width: 178px;
  margin-bottom: 42px;
}

.vf-kicker {
  color: #006f52;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
}

.vf-product-name {
  font-size: clamp(48px, 7vw, 92px) !important;
  letter-spacing: .08em !important;
  line-height: 1.02 !important;
}

.vf-hero h1,
.vf-section h2 {
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 650;
}

.vf-section h2 {
  font-size: clamp(36px, 5vw, 76px);
  max-width: 850px;
}

.vf-lead,
.vf-section p {
  color: #4d5966;
  font-size: 18px;
  line-height: 1.8;
}

.vf-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.vf-btn {
  min-width: 160px;
  border-radius: 4px;
  padding: 15px 24px;
  text-align: center;
  font-weight: 650;
  border: 1px solid #111;
  transition: .25s ease;
}

.vf-btn-dark {
  background: #111;
  color: #fff;
}

.vf-btn-light {
  background: #fff;
  color: #111;
}

.vf-btn:hover {
  transform: translateY(-2px);
}

.vf-hero-car {
  align-self: end;
}

.vf-hero-car img {
  width: 118%;
  max-width: none;
  margin-left: -13%;
  filter: drop-shadow(0 36px 44px rgba(0, 0, 0, .20));
  transform: translateY(28px);
  mix-blend-mode: multiply;
}

.vf-hero-specs {
  position: relative;
  z-index: 2;
  margin-top: -104px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d9dfe4;
  border-bottom: 1px solid #d9dfe4;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.vf-hero-specs div {
  padding: 24px 28px;
  border-right: 1px solid #d9dfe4;
}

.vf-hero-specs div:last-child {
  border-right: 0;
}

.vf-hero-specs span {
  display: block;
  font-size: 28px;
  font-weight: 650;
}

.vf-hero-specs small {
  color: #6b7480;
  line-height: 1.5;
}

.vf-price-chip {
  position: absolute;
  right: 9%;
  bottom: 174px;
  z-index: 3;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #d9dfe4;
  padding: 16px 22px;
  font-weight: 650;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .08);
}

.vf-price-chip strong {
  color: #006f52;
}

.vf-subnav {
  position: sticky;
  top: 110px;
  z-index: 35;
  background: #fff;
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
}

.vf-subnav .container {
  display: flex;
  overflow-x: auto;
  justify-content: center;
}

.vf-nav-link {
  padding: 19px 22px;
  color: #5f6770;
  font-weight: 650;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.vf-nav-link.active {
  color: #111;
  border-color: #006f52;
}

.vf-section {
  padding: 112px 0;
}

.vf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.vf-two-col.reverse {
  grid-template-columns: 1.05fr .95fr;
}

.vf-two-col img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.vf-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.vf-mini-grid div {
  border-top: 1px solid #cfd7de;
  padding-top: 18px;
}

.vf-mini-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.vf-mini-grid span {
  color: #63707d;
  line-height: 1.7;
}

.vf-color-section,
.vf-visual,
.vf-spec-section {
  background: #f6f7f7;
  text-align: center;
}

.vf-color-section h2,
.vf-visual h2,
.vf-feature-tabs h2,
.vf-spec-section h2 {
  margin-left: auto;
  margin-right: auto;
}

.vf-center-desc {
  max-width: 720px;
  margin: 18px auto 0;
}

.vf-color-car {
  min-height: 390px;
  display: grid;
  place-items: center;
  margin: 28px 0 8px;
}

.vf-color-car img {
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, .18));
  mix-blend-mode: multiply;
}

.vf-swatches {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.vf-rotate-frame {
  position: relative;
  min-height: 500px;
  margin-top: 30px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #fff 0%, #eef1f3 64%, #e6ebee 100%);
  overflow: hidden;
  cursor: grab;
}

.vf-rotate-frame img {
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(0, 0, 0, .18));
  mix-blend-mode: multiply;
}

.vf-rotate-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d1d8de;
  background: #fff;
  cursor: pointer;
  z-index: 2;
}

.vf-rotate-btn:first-child {
  left: 24px;
}

.vf-rotate-btn:nth-of-type(2) {
  right: 24px;
}

.vf-drag-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .78);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 650;
}

.vf-photo-story {
  padding: 0 0 112px;
  background: #fff;
}

.vf-photo-full img {
  width: 100%;
  height: 72vh;
  object-fit: cover;
}

.vf-story-card {
  margin-top: -110px;
  position: relative;
  background: #fff;
  padding: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.vf-feature-tabs {
  text-align: center;
  background: #fff;
}

.vf-feature-nav {
  display: inline-flex;
  gap: 0;
  border: 1px solid #d8dfe4;
  margin: 28px 0 34px;
}

.vf-feature-nav button {
  border: 0;
  background: #fff;
  padding: 15px 28px;
  cursor: pointer;
  font-weight: 650;
}

.vf-feature-nav button.active {
  background: #111;
  color: #fff;
}

.vf-feature-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.vf-feature-grid.active {
  display: grid;
}

.vf-feature-grid article {
  border: 1px solid #e0e6ea;
  background: #fff;
}

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

.vf-feature-grid h3 {
  font-size: 18px;
  margin: 22px 22px 8px;
}

.vf-feature-grid p {
  margin: 0 22px 18px;
  font-size: 16px;
  line-height: 1.5;
}

.dark .vf-feature-grid button {
  color:#fff;
  border-color: #1e77dc;
}
.vf-feature-grid button {
  margin: 0 22px 24px;
  border: 0;
  border-bottom: 2px solid #111;
  background: transparent;
  padding: 0 0 8px;
  font-weight: 650;
  cursor: pointer;
}

body.vf-feature-drawer-open {
  overflow: hidden;
}

.vf-feature-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  pointer-events: none;
}

.vf-feature-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.vf-feature-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity .24s ease;
}

.vf-feature-drawer.is-open .vf-feature-drawer-backdrop {
  opacity: 1;
}

.vf-feature-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(430px, 100%);
  height: 100%;
  background: #fff;
  color: #171717;
  box-shadow: -28px 0 70px rgba(0, 0, 0, .26);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22, .61, .36, 1);
  outline: 0;
}

.vf-feature-drawer.is-open .vf-feature-drawer-panel {
  transform: translateX(0);
}

.vf-feature-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px 0 28px;
  border-bottom: 1px solid #e7ebef;
  background: #fff;
}

.vf-feature-drawer-head strong {
  color: #424a55;
  font-size: 14px;
  font-weight: 650;
}

.vf-feature-drawer-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #2088dc;
  border-radius: 50%;
  background: #fff;
  color: #126cb5;
  cursor: pointer;
}

.vf-feature-drawer-scroll {
  overflow-y: auto;
  background: #fff;
}

.vf-feature-drawer-media {
  margin: 0;
  height: 272px;
  background: #f2f5f8;
}

.vf-feature-drawer-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-feature-drawer-content {
  padding: 28px 34px 34px;
}

.vf-feature-drawer-content h3 {
  margin: 0 0 12px;
  color: #171717;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 650;
}

.vf-feature-drawer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f2f3f4;
  color: #616872;
  font-size: 12px;
  font-weight: 650;
}

.vf-feature-drawer-content p {
  margin: 26px 0 0;
  color: #30343a;
  font-size: 15px;
  line-height: 1.75;
}

.vf-feature-drawer-actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px 18px;
  border-top: 1px solid #edf0f3;
  background: #fff;
}

.vf-feature-drawer-actions button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #e1e5e9;
  border-radius: 50%;
  background: #fff;
  color: #4c5561;
  cursor: pointer;
  transition: .2s ease;
}

.vf-feature-drawer-actions button:hover,
.vf-feature-drawer-close:hover {
  border-color: #0f56a6;
  color: #0f56a6;
}

.vf-feature-drawer-actions button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .vf-feature-drawer-panel {
    width: 100%;
  }

  .vf-feature-drawer-head {
    padding-left: 22px;
  }

  .vf-feature-drawer-media {
    height: min(54vh, 320px);
  }

  .vf-feature-drawer-content {
    padding: 24px 24px 30px;
  }

  .vf-feature-drawer-content h3 {
    font-size: 20px;
  }
}

.vf-spec-table-wrap {
  overflow-x: auto;
  margin-top: 34px;
  background: #fff;
}

.vf-spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.vf-spec-table th {
  background: #111;
  color: #fff;
  padding: 20px;
}

.vf-spec-table td {
  padding: 20px;
  border-bottom: 1px solid #e0e6ea;
  font-weight: 650;
}

.vf-consult {
  background: #0b151f;
  color: #fff;
  text-align: center;
}

.vf-consult h2 {
  margin-left: auto;
  margin-right: auto;
}

.vf-consult p {
  color: #cbd5df;
}

.vf-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  background: rgba(17, 17, 17, .9);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.vf-sticky-cta a {
  background: #fff;
  color: #111;
  padding: 10px 16px;
  font-weight: 650;
}

/* Hyundai-like price table */
.price-like-hyundai {
  --hy-blue: #0c3d78;
  --hy-red: #e00022;
  --hy-gray: #5d5d5d;
  background: #fff;
  color: #111;
  font-family: var(--font);
}

.price-promo {
  display: grid;
  grid-template-columns: 1fr 330px;
  min-height: 424px;
  background: #f2f2f2;
}

.price-promo-left {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #142a68, #234aa1 48%, #fff 49%);
  padding: 44px 0 0 38px;
}

.price-promo-left h1 {
  max-width: 520px;
  font-size: 34px;
  margin: 8px 0;
  line-height: 1.2;
}

.price-promo-left span,
.price-promo-left p {
  font-size: 22px;
  font-weight: 650;
}

.price-promo-left img {
  position: absolute;
  right: 6%;
  bottom: 8px;
  width: 54%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .24));
}

.price-promo-left small {
  position: absolute;
  left: 30px;
  bottom: 24px;
  color: #333;
}

.price-promo-right {
  background: #fff;
  text-align: center;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.price-promo-right strong {
  color: var(--hy-blue);
  font-size: 18px;
  margin-bottom: 8px;
}

.price-promo-right img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  margin: auto;
}

.price-promo-right p {
  margin: 0 0 8px;
  font-weight: 650;
}

.price-breadcrumb {
  background: #eee;
  padding: 18px 0;
  color: #50555a;
}

.price-breadcrumb span {
  padding: 0 12px;
  color: #9aa1a8;
}

.price-table-section {
  padding: 48px 0 72px;
}

.price-title-main {
  text-align: center;
  margin-bottom: 22px;
}

.price-title-main span {
  display: inline-block;
  font-size: 34px;
  font-weight: 650;
  padding-bottom: 14px;
  border-bottom: 5px solid var(--hy-red);
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  background: #fff;
  font-size: 17px;
}

.price-table th {
  background: #dedede;
  padding: 18px;
  text-align: left;
  font-weight: 650;
}

.price-table td {
  padding: 22px 12px;
  border-bottom: 1px solid #d4d9de;
  vertical-align: middle;
}

.price-car-cell {
  width: 280px;
  text-align: center;
  padding: 14px;
}

.price-car-cell img {
  width: 270px;
  height: 170px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.price-car-cell a {
  display: block;
  font-weight: 650;
  font-size: 17px;
}

.price-table .vername {
  font-weight: 650;
  font-size: 17px;
  min-width: 150px;
}

.price-table .verprice {
  color: var(--hy-red);
  font-size: 18px;
  font-weight: 650;
  min-width: 150px;
}

.price-link {
  display: inline-block;
  border: 0;
  background: var(--hy-gray);
  color: #fff;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
}

.price-link:hover {
  background: var(--hy-blue);
  color: #fff;
}

.price-mobile-list {
  display: none;
}

.price-mobile-card {
  border: 1px solid #d8dde4;
  background: #fff;
  padding: 16px;
}

.price-mobile-head {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
}

.price-mobile-head img {
  width: 112px;
  height: 74px;
  object-fit: contain;
}

.price-mobile-head span {
  display: block;
  color: #5b6470;
  font-size: 12px;
  font-weight: 650;
}

.price-mobile-head h3 {
  margin: 4px 0 0;
  color: #111;
  font-size: 17px;
  line-height: 1.28;
}

.price-mobile-card>strong {
  display: block;
  margin-top: 14px;
  color: var(--hy-red);
  font-size: 21px;
  font-weight: 650;
}

.price-mobile-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.price-mobile-actions .price-link {
  width: 100%;
  padding: 11px 8px;
  text-align: center;
  font-size: 13px;
}

.price-newsletter {
  background: #102b4d;
  color: #fff;
  padding: 40px 0;
}

.price-newsletter .container {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.price-newsletter h2 {
  max-width: 560px;
  margin: 0;
  font-size: 24px;
}

.price-newsletter form {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 120px;
  gap: 8px;
}

.price-newsletter input {
  border: 0;
  padding: 14px;
}

.price-newsletter button {
  border: 0;
  background: var(--hy-red);
  color: #fff;
  font-weight: 650;
}

.price-newsletter .form-message {
  grid-column: 1 / -1;
  margin: 0;
  color: #d7e6ff;
}

.price-tools {
  position: fixed;
  right: 20px;
  top: 45%;
  z-index: 45;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.price-tools a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #e5e5e5;
  color: #111;
  position: relative;
  font-size: 22px;
}

.price-tools span {
  position: absolute;
  right: 56px;
  background: #111;
  color: #fff;
  padding: 8px 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-weight: normal;
  font-size: 17px;
}

.price-tools a:hover span {
  opacity: 1;
}

body[data-page="auth"] {
  background:
    radial-gradient(circle at 18% 18%, rgba(35, 183, 255, .16), transparent 28rem),
    radial-gradient(circle at 86% 22%, rgba(215, 168, 79, .12), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 48%, #fff 100%);
}

body[data-page="auth"] .floating-contact {
  display: none;
}

body[data-page="auth"] .site-footer {
  margin-top: 0;
}

.vf-auth-page {
  width: 100%;
  padding: 54px 0 74px;
}

.vf-auth-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(214, 225, 240, .92);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 76px rgba(6, 27, 58, .14);
  overflow: hidden;
}

.vf-auth-shell-compact {
  max-width: 980px;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
}

.vf-auth-visual {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 560px;
  padding: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 34%, rgba(35, 183, 255, .24), transparent 19rem),
    linear-gradient(145deg, #061b3a 0%, #0a3b78 58%, #0f56a6 100%);
  color: #fff;
}

.vf-auth-visual::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% 24%;
  height: 42%;
  background: rgba(255, 255, 255, .08);
  transform: skewY(-8deg);
}

.vf-auth-visual .eyebrow {
  color: #9bd7ff;
}

.vf-auth-visual h1 {
  position: relative;
  z-index: 1;
  margin: 16px 0 12px;
  max-width: 420px;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.vf-auth-visual p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
}

.vf-auth-visual img {
  position: relative;
  z-index: 1;
  width: min(520px, 115%);
  margin: 34px -20px 8px auto;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .34));
}

.vf-auth-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.vf-auth-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #eef8ff;
  font-size: 13px;
  font-weight: 650;
}

body[data-page="auth"] .wrap-user {
  width: min(760px, calc(100vw - 32px));
  margin: 54px auto 72px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(230, 237, 247, .92);
  border-radius: 24px;
  box-shadow: 0 28px 76px rgba(6, 27, 58, .11);
}

body[data-page="auth"] .vf-auth-shell .wrap-user {
  width: 100%;
  min-width: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="auth"] .title-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6edf7;
}

body[data-page="auth"] .title-user span {
  color: #061b3a;
  font-size: 28px;
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: 0;
}

body[data-page="auth"] .title-user a,
body[data-page="auth"] .note-user a {
  color: #0f56a6;
  font-weight: 650;
}

body[data-page="auth"] .form-user {
  display: grid;
  gap: 14px;
}

.member-account-page {
  padding: 36px 0 58px;
  background: #f5f7fb;
}

.member-account-page .flex-member {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.vf-member-sidebar,
.member-account-page .right_member,
.member-account-page .wrap-user {
  min-width: 0;
}

.vf-member-sidebar {
  align-self: start;
  padding: 16px;
  border: 1px solid #e6edf7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(6, 27, 58, .07);
}

.vf-member-sidebar .img_member {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 12px 0 18px;
  border-bottom: 1px solid #e6edf7;
}

.vf-member-sidebar .img_member span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #0f56a6;
  color: #fff;
  font-size: 24px;
  font-weight: 650;
}

.vf-member-sidebar .img_member b {
  color: #061b3a;
  text-align: center;
}

.vf-member-sidebar .list-group {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
}

.vf-member-sidebar .list-group-item {
  list-style: none;
  border: 0;
  padding: 0;
  background: transparent;
}

.vf-member-sidebar .list-group-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  color: #334155;
  font-weight: 650;
  text-decoration: none;
}

.vf-member-sidebar .list-group-item a.active,
.vf-member-sidebar .list-group-item a:hover {
  background: rgba(15, 86, 166, .1);
  color: #0f56a6;
}

.member-account-page .right_member,
.member-account-page .wrap-user {
  width: 100%;
  margin: 0;
  padding: 22px;
  border: 1px solid #e6edf7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(6, 27, 58, .07);
}

.member-account-page .right_member .wrap-user {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.member-account-page .title_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  padding: 0 0 15px;
  border-bottom: 1px solid #e6edf7;
}

.member-account-page .title_info h2 {
  margin: 0;
  color: #061b3a;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: 0;
}

.member-account-page .box_member,
.member-order-box {
  min-width: 0;
}

.member-order-head,
.member-order-info-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.member-order-head {
  grid-template-columns: auto repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.member-order-head .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  justify-self: start;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  color: #0f56a6;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.member-order-head div,
.member-order-info-grid section {
  padding: 14px;
  border: 1px solid #e6edf7;
  border-radius: 12px;
  background: #f8fafc;
}

.member-order-head span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
}

.member-order-head strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.35;
  word-break: break-word;
}

.member-order-head strong,
.member-order-info-grid h3 {
  color: #061b3a;
}

.member-order-info-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 650;
}

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

.member-order-info-grid p {
  margin: 7px 0 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.member-order-scroll {
  border: 1px solid #e6edf7;
  border-radius: 12px;
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.member-order-scroll::-webkit-scrollbar {
  height: 8px;
}

.member-order-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c9d6e6;
}

.member-order-table {
  width: 100%;
  min-width: 780px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  color: #122034;
  font-size: 14px;
  line-height: 1.45;
}

.member-order-detail-table {
  min-width: 820px;
}

.member-order-table th,
.member-order-table td {
  border: 0;
  vertical-align: middle;
}

.member-order-table th {
  padding: 12px 14px;
  border-bottom: 1px solid #e6edf7;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.member-order-table td {
  padding: 14px;
  border-top: 1px solid #edf2f7;
  background: #fff;
}

.member-order-table tbody tr:first-child td {
  border-top: 0;
}

.member-order-table tbody tr:hover td {
  background: #fbfdff;
}

.member-order-table tfoot td {
  border-top: 1px solid #e6edf7;
  background: #f8fafc;
  color: #061b3a;
  font-weight: 650;
}

.member-order-list-table .member-order-index {
  width: 58px;
  text-align: center;
}

.member-order-list-table th:nth-child(2) {
  width: 150px;
}

.member-order-list-table th:nth-child(3) {
  width: 145px;
}

.member-order-list-table th:nth-child(4) {
  width: 135px;
}

.member-order-list-table th:nth-child(5) {
  width: 170px;
}

.member-order-list-table th:nth-child(6) {
  width: 145px;
}

.member-order-list-table th:nth-child(7) {
  width: 76px;
}

.member-order-index {
  color: #64748b;
  font-weight: 650;
}

.member-order-code,
.member-order-date,
.member-order-total {
  display: inline-block;
  white-space: nowrap;
}

.member-order-code {
  color: #0f56a6;
  font-weight: 650;
}

.member-order-date {
  color: #475569;
  font-weight: 650;
}

.member-order-status {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eaf4ff;
  color: #0f56a6 !important;
  font-size: 12px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-order-status.text-success {
  background: #ecfdf5;
  color: #047857 !important;
}

.member-order-status.text-danger {
  background: #fff1f2;
  color: #be123c !important;
}

.member-order-status.text-warning {
  background: #fffbeb;
  color: #b45309 !important;
}

.member-order-status.text-secondary {
  background: #f1f5f9;
  color: #475569 !important;
}

.member-order-voucher {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-order-voucher small {
  flex: 0 0 auto;
  margin: 0;
  color: #0f56a6;
  font-size: 12px;
  font-weight: 650;
}

.member-order-voucher-code {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.member-order-muted {
  color: #94a3b8;
  font-weight: 650;
}

.member-order-total {
  color: #061b3a;
  font-size: 15px;
  font-weight: 650;
}

.member-order-product-name {
  display: block;
  color: #061b3a;
  font-weight: 650;
  line-height: 1.35;
}

.member-order-table small {
  display: block;
  margin-top: 4px;
  color: #64748b;
}

.member-order-table .img-preview {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.member-order-detail-link {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(15, 86, 166, .14);
  border-radius: 10px;
  background: #eff6ff;
  color: #0f56a6;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.member-order-detail-link:hover {
  background: #0f56a6;
  color: #fff;
  transform: translateY(-1px);
}

.member-order-empty {
  padding: 28px 14px !important;
  color: #64748b;
  font-weight: 650;
}

body[data-page="auth"] .form-user label,
body[data-page="auth"] .vf-auth-field>label {
  margin: 0 0 -6px;
  color: #2d3d52;
  font-size: 13px;
  font-weight: 650;
}

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

.vf-auth-field {
  display: grid;
  gap: 8px;
}

.vf-auth-field-wide {
  grid-column: 1 / -1;
}

body[data-page="auth"] .input-user {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  min-height: 50px;
}

body[data-page="auth"] .input-group-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex: 0 0 52px;
  border: 1px solid #dbe6f3;
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: #f3f7fc;
  color: #0f56a6;
}

body[data-page="auth"] .form-control {
  flex: 1 1 0;
  min-width: 0;
  width: 1%;
  min-height: 50px;
  border: 1px solid #dbe6f3;
  border-radius: 0 14px 14px 0;
  padding: 0 16px;
  color: #102033;
  background: #fff;
  outline: 0;
}

body[data-page="auth"] .form-control:focus {
  border-color: #0f56a6;
  box-shadow: 0 0 0 4px rgba(15, 86, 166, .12);
}

body[data-page="auth"] .input-user:focus-within .input-group-text {
  border-color: #0f56a6;
  background: #eaf4ff;
}

body[data-page="auth"] .vf-radio-group {
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #dbe6f3;
  border-radius: 14px;
  background: #fff;
}

body[data-page="auth"] .radio-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
  color: #2d3d52;
  font-weight: 650;
}

body[data-page="auth"] .form-check-input {
  width: 18px;
  height: 18px;
  accent-color: #0f56a6;
}

body[data-page="auth"] .button-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

body[data-page="auth"] .button-user .btn {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: linear-gradient(135deg, #061b3a, #0f56a6);
  color: #fff;
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(15, 86, 166, .24);
  -webkit-appearance: none;
  appearance: none;
}

body[data-page="auth"] .button-user .btn-block {
  width: 100%;
}

body[data-page="auth"] .button-user .btn:disabled {
  cursor: not-allowed;
  opacity: .62;
  box-shadow: none;
}

body[data-page="auth"] .form-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4f6074;
  font-weight: 650;
}

body[data-page="auth"] .note-user {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid #e6edf7;
  color: #4f6074;
  text-align: center;
}

body[data-page="auth"] .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 6px;
  color: #c42034;
  font-size: 13px;
}

body[data-page="auth"] .was-validated .form-control:invalid+.invalid-feedback {
  display: block;
}

body[data-page="auth"] .was-validated .form-control:invalid {
  border-color: #d94355;
}

body[data-page="auth"] .alert {
  margin: 0 0 4px;
  border-radius: 14px;
  border: 1px solid #f2d4d8;
  padding: 12px 14px;
  background: #fff5f6;
  color: #9f1d2d;
}

body.dark[data-page="auth"] {
  background:
    radial-gradient(circle at 18% 18%, rgba(88, 166, 255, .12), transparent 28rem),
    linear-gradient(180deg, #061225 0%, #091a33 52%, #071426 100%);
}

body.dark[data-page="auth"] .vf-auth-shell,
body.dark[data-page="auth"] .wrap-user {
  background: rgba(15, 32, 58, .94);
  border-color: rgba(255, 255, 255, .12);
  color: #eef6ff;
}

body.dark[data-page="auth"] .title-user {
  border-color: rgba(255, 255, 255, .12);
}

body.dark[data-page="auth"] .title-user span,
body.dark[data-page="auth"] .form-user label,
body.dark[data-page="auth"] .vf-auth-field>label {
  color: #f4f9ff;
}

body.dark[data-page="auth"] .form-control,
body.dark[data-page="auth"] .vf-radio-group {
  background: rgba(7, 20, 38, .86);
  border-color: rgba(255, 255, 255, .14);
  color: #edf6ff;
}

body.dark[data-page="auth"] .input-group-text {
  background: rgba(88, 166, 255, .1);
  border-color: rgba(255, 255, 255, .14);
  color: #8ec8ff;
}

body.dark[data-page="auth"] .input-user:focus-within .input-group-text {
  border-color: #58a6ff;
  background: rgba(88, 166, 255, .18);
}

body.dark[data-page="auth"] .note-user,
body.dark[data-page="auth"] .form-check,
body.dark[data-page="auth"] .radio-user {
  color: #b8c9df;
}

body.dark[data-page="auth"] .note-user {
  border-color: rgba(255, 255, 255, .12);
}

body.dark[data-page="auth"] .alert {
  background: rgba(159, 29, 45, .16);
  border-color: rgba(255, 255, 255, .12);
  color: #ffd4db;
}

.vf-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;
}

@media (max-width: 1024px) {

  .vf-auth-shell,
  .vf-auth-shell-compact {
    max-width: 720px;
    grid-template-columns: 1fr;
  }

  .vf-auth-visual {
    min-height: 300px;
    padding: 30px;
  }

  .vf-auth-visual h1 {
    max-width: 560px;
    font-size: 38px;
  }

  .vf-auth-visual img {
    position: absolute;
    right: -36px;
    bottom: 18px;
    width: 48%;
    margin: 0;
    opacity: .88;
  }

  .nav-menu {
    position: fixed;
    inset: 110px 16px auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu>a,
  .nav-menu>button {
    padding: 14px;
    text-align: left;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .mega-menu {
    top: 112px;
    --mega-menu-max-height: calc(100vh - 130px);
    max-height: var(--mega-menu-max-height);
    overflow: auto;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .mega-categories {
    overflow: visible;
  }

  .mega-tabs,
  .mega-products {
    max-height: none;
    overflow: visible;
    padding-right: 0;
    margin-right: 0;
    scrollbar-gutter: auto;
  }

  .mega-products {
    padding: 0;
  }

  .quick-grid,
  .product-grid,
  .price-grid,
  .feature-grid,
  .shop-grid,
  .service-grid-pro,
  .news-category-grid,
  .vf-product-grid,
  .vf-part-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .toolbar,
  .detail-grid,
  .form-shell,
  .news-grid,
  .footer-grid,
  .product-hero-grid,
  .shop-layout,
  .vf-part-grid,
  .calc-grid,
  .deposit-grid,
  .news-latest,
  .article-layout,
  .article-latest-grid {
    grid-template-columns: 1fr;
  }

  .footer-newsletter {
    grid-column: auto;
  }

  .footer-subscribe {
    width: 100%;
  }

  .filter-panel {
    position: static;
  }

  .shop-sidebar,
  .vf-part-order,
  .deposit-preview,
  .rolling-result-panel,
  .article-sidebar {
    position: static;
  }

  .member-account-page .flex-member {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
  }

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

  .member-order-head .btn {
    grid-column: 1 / -1;
  }

  .vf-floating-cart {
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .vf-cart-panel {
    width: min(400px, calc(100vw - 18px));
  }

  body.com-gio-hang .wrap-cart>.row {
    grid-template-columns: 1fr;
  }

  body.com-gio-hang .section-cart {
    position: static;
    top: auto;
  }

  .vf-hero-inner,
  .vf-two-col,
  .vf-two-col.reverse {
    grid-template-columns: 1fr;
  }

  .vf-hero-inner {
    padding-top: 42px;
  }

  .vf-hero-car img {
    width: 100%;
    margin-left: 0;
  }

  .vf-hero-specs {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .vf-mini-grid,
  .vf-feature-grid.active {
    grid-template-columns: 1fr;
  }

  .price-promo {
    grid-template-columns: 1fr;
  }

  .price-promo-right {
    display: none;
  }

  .price-newsletter .container {
    display: grid;
  }

  .cellphone-product-hero .container {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 22px;
  }

  .cellphone-product-hero img {
    width: 100%;
    max-height: 210px;
  }

  .cell-sort-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-home-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 1024px) {
    .mega-menu {
      --mega-menu-max-height: calc(100dvh - 130px);
    }
  }
}

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

  .vf-auth-page {
    padding: 26px 0 44px;
  }

  .vf-auth-shell,
  .vf-auth-shell-compact {
    width: min(100% - 24px, 560px);
    border-radius: 22px;
  }

  .vf-auth-visual {
    display: none;
  }

  .vf-auth-grid {
    grid-template-columns: 1fr;
  }

  .vf-auth-field-wide {
    grid-column: auto;
  }

  body[data-page="auth"] .wrap-user {
    margin: 34px auto 52px;
    padding: 24px 18px;
    border-radius: 20px;
  }

  body[data-page="auth"] .vf-auth-shell .wrap-user {
    margin: 0;
    padding: 24px 18px;
  }

  body[data-page="auth"] .title-user {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  body[data-page="auth"] .title-user span {
    font-size: 24px;
  }

  body[data-page="auth"] .button-user {
    align-items: stretch;
    flex-direction: column;
  }

  body[data-page="auth"] .button-user .btn {
    width: 100%;
  }

  .member-account-page {
    padding: 26px 0 44px;
  }

  .member-account-page .flex-member,
  .member-order-head,
  .member-order-info-grid,
  .cart-session-actions,
  .cart-coupon-row {
    grid-template-columns: 1fr;
  }

  .member-account-page .right_member,
  .member-account-page .wrap-user,
  .vf-member-sidebar {
    padding: 18px;
    border-radius: 16px;
  }

  .vf-floating-cart {
    top: auto;
    right: 14px;
    bottom: 88px;
    transform: none;
  }

  .vf-floating-cart:hover {
    transform: translateY(-2px);
  }

  .vf-cart-panel {
    width: 100%;
    padding: 18px 16px 16px;
  }

  .vf-cart-panel-actions {
    grid-template-columns: 1fr;
  }

  .vf-cart-panel-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .vf-cart-panel-qty {
    grid-column: 2;
    grid-template-columns: repeat(4, auto);
    align-items: center;
    justify-content: start;
  }

  body.com-gio-hang .wrap-content.padding-top-bottom {
    width: min(100% - 24px, 560px);
    padding: 22px 0 40px;
  }

  body.com-gio-hang .wrap-cart {
    padding: 18px;
    border-radius: 18px;
  }

  body.com-gio-hang .cart-page-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  body.com-gio-hang .cart-page-head h1 {
    font-size: 28px;
  }

  body.com-gio-hang .cart-continue-link {
    width: 100%;
  }

  body.com-gio-hang .procart {
    padding: 16px;
  }

  body.com-gio-hang .procart .row {
    grid-template-columns: 78px minmax(0, 1fr);
    row-gap: 10px;
    column-gap: 14px;
  }

  body.com-gio-hang .procart-label {
    display: none;
  }

  body.com-gio-hang .pic-procart img {
    width: 76px;
    height: 76px;
  }

  body.com-gio-hang .cart-item-head {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body.com-gio-hang .cart-delete-confirm {
    position: static;
    width: 100%;
    flex-wrap: wrap;
    white-space: normal;
  }

  body.com-gio-hang .name-procart a {
    font-size: 15px;
  }

  body.com-gio-hang .cart-unit-procart,
  body.com-gio-hang .procart>.row>.quantity-procart,
  body.com-gio-hang .procart>.row>.price-procart {
    grid-column: 2;
    text-align: left;
  }

  body.com-gio-hang .cart-metric-label {
    display: block;
  }

  body.com-gio-hang .quantity-counter-procart {
    margin-top: 0;
  }

  body.com-gio-hang .quantity-counter-procart .quantity-procart {
    grid-column: auto;
    text-align: center;
  }

  body.com-gio-hang .procart>.row>.price-procart {
    display: block;
  }

  body.com-gio-hang .price-procart-rp {
    display: none;
  }

  body.com-gio-hang .cart-coupon-row,
  body.com-gio-hang .information-cart .row {
    grid-template-columns: 1fr;
  }

  body.com-gio-hang .title-cart {
    font-size: 18px;
  }

  body.com-gio-hang .section-cart {
    padding: 18px;
    border-radius: 16px;
  }

  .member-account-page .flex-member {
    width: min(100% - 24px, 560px);
    gap: 14px;
  }

  .member-account-page .title_info {
    margin-bottom: 14px;
    padding-bottom: 13px;
  }

  .member-account-page .title_info h2 {
    font-size: 22px;
  }

  .member-order-table {
    min-width: 720px;
    font-size: 13px;
  }

  .member-order-detail-table {
    min-width: 760px;
  }

  .member-order-table th,
  .member-order-table td {
    padding: 12px;
  }

  .member-order-list-table .member-order-index {
    width: 52px;
  }

  .member-order-detail-link {
    width: 30px;
    height: 30px;
  }

  body[data-page="auth"] .input-group-text {
    width: 48px;
    flex-basis: 48px;
  }

  body[data-page="auth"] .form-control,
  body[data-page="auth"] .vf-radio-group {
    min-height: 48px;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .topbar span:first-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar span:last-child {
    display: none;
  }

  .loan-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loan-table-toolbar {
    display: grid;
  }

  .loan-table-toolbar h3 {
    font-size: 20px;
  }

  .loan-download-btn {
    width: 100%;
  }

  .loan-table-wrap {
    max-height: 430px;
  }

  .brand img {
    width: 128px;
  }

  .nav-actions {
    margin-left: auto;
    display: flex !important;
    position: relative;
    z-index: 6;
  }

  .nav-actions .icon-btn {
    display: grid !important;
    place-items: center;
  }

  .nav-actions #themeToggle {
    display: grid !important;
  }

  .menu-toggle {
    display: inline-grid !important;
  }

  .hero,
  .hero .swiper,
  .hero-slide {
    min-height: 840px;
  }

  .figma-hero {
    height: 540px;
    max-width: 100%;
  }

  .home-hero-caption {
    left: 20px;
    right: 20px;
    bottom: 62px;
    max-width: calc(100vw - 40px);
  }

  .home-hero-caption strong {
    font-size: 32px;
  }

  .home-hero-caption small {
    font-size: 14px;
    line-height: 1.5;
  }

  .home-tools-section {
    padding: 2px 0 42px;
  }

  .home-tools-title {
    margin-bottom: 18px;
    font-size: 22px;
  }

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

  .home-tools a {
    min-height: 146px;
    gap: 14px;
    padding: 18px 10px 16px;
  }

  .home-tool-icon {
    width: 54px;
    height: 54px;
    font-size: 40px;
  }

  .home-tool-copy strong {
    font-size: 16px;
  }

  .home-tool-copy small {
    display: none;
  }

  .home-tools img {
    width: 46px;
    height: 46px;
  }

  .home-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .home-pills button {
    flex: 0 0 auto;
    min-width: 118px;
  }

  .hero-copy {
    padding-top: 28px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -.055em;
    overflow-wrap: break-word;
  }

  .quick-forms {
    margin-top: 0;
    padding: 18px 0 0;
  }

  .hero-stats,
  .quick-grid,
  .product-grid,
  .price-grid,
  .feature-grid,
  .field-grid,
  .spec-ribbon,
  .shop-grid,
  .service-grid-pro,
  .news-category-grid,
  .vf-choice-row,
  .product-filter-head,
  .product-filter-footer,
  .product-filter-row,
  .article-step-grid,
  .vf-product-grid,
  .vf-part-related-grid {
    grid-template-columns: 1fr;
  }

  .product-hero {
    min-height: auto;
    padding: 58px 0;
  }

  .product-hero img {
    width: 100%;
  }

  .product-top-banner {
    height: 180px;
  }

  .product-banner-shape {
    width: 34%;
  }

  .product-banner-cars {
    width: 88vw;
    gap: 0;
  }

  .product-banner-cars img {
    max-height: 110px;
  }

  .product-title-line {
    grid-template-columns: 64px auto 64px;
  }

  .product-title-line h1 {
    font-size: 28px;
  }

  .product-filter-strip label,
  .product-filter-strip strong,
  .filter-red {
    width: 100%;
    margin-left: 0;
  }

  .product-filter-board {
    padding: 18px;
    border-radius: 20px;
  }

  .product-filter-head h2 {
    font-size: 25px;
  }

  .cellphone-product-hero h1 {
    font-size: 38px;
  }

  body[data-page="products"] .floating-contact {
    display: none;
  }

  body[data-page="price"] .floating-contact,
  body[data-page="parts"] .floating-contact {
    display: none;
  }

  .cart-drawer {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 18px;
    padding: 14px;
  }

  .cart-voucher-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cart-voucher-remove {
    grid-column: 2;
  }

  .cart-lead-form .field-grid {
    grid-template-columns: 1fr;
  }

  .cellphone-product-section {
    padding-top: 20px;
  }

  .cellphone-filter-row {
    flex-wrap: nowrap;
    overflow: visible;
    gap: 10px;
    margin: 0 0 14px;
    padding: 0;
  }

  .cellphone-filter-row::-webkit-scrollbar,
  .cell-sort-tabs::-webkit-scrollbar {
    display: none;
  }

  .cellphone-filter-row .cell-filter-pill:not(.filter-main) {
    display: none;
  }

  .cell-filter-pill {
    min-height: 48px;
    padding: 0 20px;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(18, 36, 63, .08);
  }

  .cell-filter-pill.filter-main {
    width: 100%;
    justify-content: center;
    background: #fff;
    border-color: #d7dfed;
    color: #2f3b4f;
    box-shadow: 0 12px 24px rgba(18, 36, 63, .08);
  }

  .cell-filter-pill.filter-main.has-active,
  .cell-filter-pill.filter-main[aria-expanded="true"] {
    border-color: rgba(255, 48, 72, .5);
    color: #ec2f46;
    box-shadow: 0 14px 28px rgba(255, 48, 72, .13);
  }

  .cell-active-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: -2px 0 14px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .cell-active-filters::-webkit-scrollbar {
    display: none;
  }

  .cell-active-filter {
    flex: 0 0 auto;
    min-height: 34px;
    font-size: 12px;
    padding-left: 12px;
  }

  .cell-filter-popover {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 67vh;
    height: min(67dvh, 560px);
    max-height: 67vh;
    max-height: 67dvh;
    overflow: auto;
    border-radius: 26px 26px 0 0;
    padding: 30px 16px calc(18px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    z-index: 10050;
    background: #fff;
    box-shadow: 0 -18px 70px rgba(18, 36, 63, .22);
    opacity: 1;
    transition: transform .24s ease, visibility .24s ease;
  }

  .cell-filter-popover::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 50%;
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: #d9e2ee;
    transform: translateX(-50%);
  }

  .cell-filter-popover.open {
    transform: translateY(0);
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10050 !important;
  }

  .cell-filter-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .cell-filter-panel-head strong {
    font-size: 18px;
  }

  .cell-filter-group {
    margin-bottom: 18px;
  }

  .cell-filter-group h3 {
    font-size: 15px;
  }

  .cell-filter-options {
    gap: 10px;
  }

  .cell-filter-options button {
    padding: 10px 14px;
    font-size: 14px;
  }

  .cell-filter-actions {
    position: sticky;
    bottom: -18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .86), #fff 30%);
    padding-top: 14px;
    gap: 10px;
  }

  .cell-filter-actions button {
    min-height: 48px;
    font-size: 16px;
  }

  .cell-filter-backdrop.open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(7, 15, 28, .42);
    backdrop-filter: blur(5px);
  }

  body.filter-open {
    overflow: hidden;
  }

  body.filter-open .floating-contact {
    display: none;
  }

  .cell-sort-panel {
    border-radius: 16px;
    padding: 14px;
    margin: 8px 0 20px;
  }

  .cell-sort-panel h2 {
    font-size: 18px;
  }

  .member-dashboard,
  .member-level-grid,
  .member-voucher-history div {
    grid-template-columns: 1fr;
  }

  .member-panel-head {
    display: grid;
  }

  .member-tier-card strong,
  .member-birthday-code strong {
    font-size: 22px;
  }

  .cell-sort-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 9px;
    margin: 0 -14px;
    padding: 0 14px 4px;
    scrollbar-width: none;
  }

  .cell-sort-tabs button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
    white-space: nowrap;
  }

  .cell-result-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .cell-result-head h2 {
    font-size: 24px;
  }

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

  .home-car-card {
    min-height: 0;
    border-radius: 14px;
    padding: 14px 10px 12px;
    box-shadow: 0 8px 18px rgba(33, 73, 112, .08);
  }

  .home-car-card:hover {
    transform: translateY(-4px);
  }

  .home-car-card::after {
    display: none;
  }

  .home-car-card .home-car-img {
    /* height: 118px; */
  }

  .home-car-card .home-car-img img {
    /* max-height: 104px; */
  }

  .home-car-card h3 {
    font-size: 14px;
    min-height: 38px;
    margin-top: 6px;
  }

  .home-car-card p {
    min-height: 34px;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .home-car-card .home-specs {
    /* grid-template-columns: 1fr; */
    /* gap: 6px; */
    /* font-size: 11px; */
    /* text-align: left; */
  }

  .home-car-card .home-specs b {
    display: inline;
    font-size: 12px;
    /* float: right; */
  }

  .home-car-card>strong {
    font-size: 13px;
    margin: 10px 0;
  }

  .home-car-card .home-card-actions {
    /* display: grid; */
    gap: 7px;
  }

  .home-car-card .home-card-actions a {
    padding: 8px 7px;
    font-size: 11px;
  }

  .home-car-card .home-card-actions a:last-child {
    padding-right: 15px;
  }

  .home-container,
  .home-news .home-container,
  .home-events .home-container {
    width: min(100% - 28px, 680px);
  }

  .home-news {
    padding: 42px 0 54px;
  }

  .home-events {
    padding: 28px 0 46px;
  }

  .home-events .home-container {
    border-radius: 20px;
    padding: 38px 16px 42px;
  }

  .home-events h2,
  .home-news h2,
  .home-charge h2 {
    font-size: 28px;
  }

  .home-charge {
    padding: 42px 0 48px;
  }

  .home-charge .home-container {
    width: min(100% - 28px, 680px);
  }

  .home-charge-head {
    margin-bottom: 26px;
  }

  .home-charge-head p {
    font-size: 14px;
    line-height: 1.7;
  }

  .home-pills {
    gap: 10px;
    margin: 18px 0 30px;
  }

  .home-pills button {
    flex: 0 0 auto;
    min-width: 118px;
    padding: 11px 14px;
  }

  .home-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .home-section-head span {
    font-size: 19px;
  }

  .home-event-feature,
  .home-event-list,
  .home-news-grid,
  .home-charge-grid,
  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-news-grid {
    gap: 28px;
  }

  .home-charge-grid {
    gap: 34px;
  }

  .home-charge-grid h3 {
    margin: 18px 0 14px;
    font-size: 18px;
  }

  .home-event-feature {
    gap: 18px;
  }

  .home-event-feature img {
    height: 220px;
  }

  .home-event-feature h3 {
    font-size: 18px;
  }

  .home-event-list {
    gap: 13px;
    margin-top: 20px;
  }

  .shop-toolbar,
  .service-cta {
    display: grid;
  }

  .vf-part-head .container {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-part-cart-pill {
    display: none;
  }

  body[data-page="part-detail"] .floating-contact {
    display: none;
  }

  .vf-part-detail {
    padding: 20px 0 42px;
  }

  .vf-part-gallery,
  .vf-part-info {
    min-height: 0;
  }

  .vf-part-gallery,
  .vf-part-info,
  .vf-part-order-card {
    padding: 18px;
  }

  .vf-part-main-image {
    min-height: 300px;
  }

  .vf-part-main-image img {
    max-height: 270px;
  }

  .vf-part-thumbs {
    gap: 10px;
  }

  .vf-part-thumbs.slick-initialized {
    padding: 0;
  }

  .part-thumb {
    min-height: 82px;
  }

  .part-thumb img {
    max-height: 62px;
  }

  .vf-part-info h1 {
    font-size: 30px;
  }

  .vf-part-price {
    font-size: 24px;
  }

  .vf-part-description {
    max-height: 360px;
  }

  .vf-part-order-product {
    grid-template-columns: 74px 1fr;
  }

  .vf-part-order-product img {
    width: 74px;
    height: 74px;
  }

  .vf-part-related {
    padding-bottom: 46px;
  }

  .vf-part-related h2 {
    font-size: 26px;
  }

  .article-cover {
    height: 280px;
  }

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

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

  .image-stack {
    min-height: 360px;
  }

  .image-stack img:first-child {
    width: 100%;
    height: 320px;
  }

  .image-stack img:last-child {
    width: 70%;
  }

  .vf-hero {
    min-height: auto;
  }

  .vf-hero-inner {
    min-height: auto;
    padding-bottom: 30px;
  }

  .vf-hero-logo {
    width: 130px;
    margin-bottom: 28px;
  }

  .vf-hero h1 {
    font-size: 56px;
  }

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

  .vf-hero-specs div {
    border-right: 0;
    border-bottom: 1px solid #d9dfe4;
  }

  .vf-section {
    padding: 70px 0;
  }

  .vf-two-col img,
  .vf-photo-full img {
    height: 360px;
  }

  .vf-story-card {
    margin-top: 0;
    padding: 28px 16px;
  }

  .vf-feature-nav {
    display: grid;
    width: 100%;
  }

  .vf-sticky-cta {
    width: calc(100% - 24px);
    justify-content: center;
    gap: 8px;
    font-size: 13px;
  }

  .vf-sticky-cta span {
    display: none;
  }

  .vf-sticky-cta a {
    padding: 9px 10px;
  }

  .price-promo-left {
    padding: 30px 18px 150px;
  }

  .price-promo-left h1 {
    font-size: 28px;
  }

  .price-promo-left img {
    width: 78%;
    right: -8%;
  }

  .price-promo-left small {
    left: 18px;
  }

  .price-table-wrap {
    display: none;
  }

  .price-mobile-list {
    display: grid;
    gap: 14px;
  }

  .price-newsletter form {
    grid-template-columns: 1fr;
  }

  .price-tools {
    display: none;
  }
}

/* Official-style Limo Green product detail */
body[data-page="detail"] {
  background: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
}

.limo-page {
  --limo-blue: #0057c8;
  --limo-navy: #0044a5;
  --limo-text: #23262c;
  --limo-muted: #5f6670;
  overflow: hidden;
}

.limo-page .container {
  width: min(1300px, calc(100vw - 80px));
}

.limo-hero {
  position: relative;
  height: 846px;
  min-height: 846px;
  overflow: hidden;
  background: #edf6f7;
}

.limo-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06) 56%, rgba(0, 69, 80, .08)),
    url("../images/limo-green-hero-bg.webp") center top / cover no-repeat;
}

.limo-hero-breadcrumb {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
}

.limo-breadcrumb {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: #334155;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
  backdrop-filter: blur(10px);
}

.limo-hero-wordmark {
  position: absolute;
  left: 50%;
  top: 62px;
  width: min(92vw, 1130px);
  transform: translateX(-50%);
  opacity: .38;
  mix-blend-mode: multiply;
}

.limo-hero-wordmark-text {
  text-align: center;
  font-size: clamp(64px, 13vw, 178px);
  font-weight: 950;
  line-height: .86;
  letter-spacing: -.08em;
  color: #0f172a;
  text-transform: uppercase;
  opacity: .08;
  white-space: nowrap;
  mix-blend-mode: normal;
}

.limo-hero-car {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 70px;
  width: min(98vw, 1420px);
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, .26));
}

.limo-hero-swatches {
  position: absolute;
  z-index: 4;
  left: clamp(20px, 4vw, 44px);
  top: 168px;
  display: grid;
  gap: 18px;
  padding: 18px 14px;
  max-height: min(520px, calc(100vh - 260px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 86, 166, .38) transparent;
  border-radius: 30px;
  background: #eef3fb;
  color: var(--limo-navy);
  -webkit-overflow-scrolling: touch;
}

.limo-hero-swatches::-webkit-scrollbar {
  width: 4px;
}

.limo-hero-swatches::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.limo-hero-swatches::-webkit-scrollbar-track {
  background: transparent;
}

.limo-hero-swatches::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(15, 86, 166, .32);
}

.limo-hero-swatches::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 86, 166, .5);
}

.limo-hero-swatches .swatch {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 50%;
  padding: 0;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 5px 10px rgba(255, 255, 255, .18), inset 0 -7px 12px rgba(0, 0, 0, .2), 0 14px 24px rgba(16, 33, 61, .08);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, outline-color .25s ease;
}

.limo-hero-swatches .swatch:hover,
.limo-hero-swatches .swatch.active {
  transform: scale(1.08);
}

.limo-hero-swatches .swatch.active {
  outline: 3px solid var(--limo-blue);
  outline-offset: -2px;
}

.limo-hero-specbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1.55fr 1fr 1.25fr;
  align-items: center;
  min-height: 195px;
  padding: 44px 72px 42px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 79, 91, .72), rgba(0, 76, 88, .96));
  clip-path: polygon(0 0, 49% 0, 50.4% 18%, 52% 0, 100% 0, 100% 82%, 51.7% 82%, 50.2% 100%, 48.7% 82%, 0 82%);
  border-bottom: 5px solid var(--limo-blue);
}

.limo-hero-specbar.is-expanded {
  grid-template-columns: repeat(var(--vf-before, 3), minmax(0, 1fr)) minmax(210px, 1.35fr) repeat(var(--vf-after, 3), minmax(0, 1fr));
  padding-left: 38px;
  padding-right: 38px;
}

.limo-hero-specbar.is-expanded .limo-spec strong,
.limo-hero-specbar.is-expanded .limo-price strong {
  font-size: 30px;
}

.limo-hero-specbar.is-expanded .limo-spec p,
.limo-hero-specbar.is-expanded .limo-price span {
  font-size: 13px;
}

.limo-spec,
.limo-price {
  text-align: center;
}

.limo-spec strong,
.limo-price strong {
  font-size: 36px;
  line-height: 1;
  font-weight: 650;
}

.limo-spec span {
  margin-left: 7px;
  font-size: 16px;
  opacity: .82;
}

.limo-spec p,
.limo-price span {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  font-weight: 600;
}

.limo-price span {
  display: block;
  margin-bottom: 7px;
}

.limo-price small {
  font-size: 19px;
  font-weight: 500;
}

.limo-price a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(350px, 92%);
  height: 47px;
  margin: 13px auto 0;
  background: rgba(255, 255, 255, .92);
  color: var(--limo-navy);
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .15em;
}

.limo-price del {
  display: block;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.limo-hero-specbar.is-expanded .limo-price del {
  font-size: 14px;
}

.limo-subnav {
  top: 79px;
  border: 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.limo-subnav .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.limo-subnav-rail {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.limo-subnav-rail-track {
  position: relative;
  display: block;
}

.limo-subnav-rail-thumb {
  position: absolute;
  display: block;
}

.limo-subnav-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #1f2937;
  font-size: 15px;
  font-weight: 650;
}

.limo-subnav-links {
  display: flex;
}

.limo-subnav .vf-nav-link {
  padding: 17px 24px;
  font-size: 14px;
  border-bottom-color: transparent;
}

.limo-subnav .vf-nav-link.active {
  border-color: var(--limo-blue);
}

.limo-section {
  padding: 2rem 0 1rem;
  background: #fff;
}

.limo-flow-section {
  scroll-margin-top: 148px;
}

.limo-flow-block,
.limo-flow-cards,
.limo-flow-gallery {
  margin-top: 42px;
}

.limo-flow-panel {
  margin-bottom: 36px;
}

.limo-intro {
  min-height: 755px;
  background:
    radial-gradient(circle at 78% 86%, rgba(0, 87, 200, .13), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f3f8fb 100%),
    #fff;
}

.limo-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.limo-design-spotlight {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 58px;
  align-items: center;
  margin-top: 52px;
}

.limo-design-car img {
  width: 100%;
  object-fit: contain;
}

.limo-design-content h2 {
  margin: 0;
}

.limo-design-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 34px 0 32px;
}

.limo-design-metrics strong {
  color: #25272c;
  font-size: 34px;
  line-height: 1;
  font-weight: 650;
}

.limo-design-metrics span {
  margin-left: 7px;
  font-size: 16px;
  color: #24272d;
}

.limo-design-metrics p {
  margin: 7px 0 0;
  color: #2e333a;
  font-size: 15px;
  font-weight: 600;
}

.limo-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 212px;
  min-height: 52px;
  padding: 0 28px;
  background: var(--limo-blue);
  color: #fff;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .14em;
}

.limo-copy h1,
.limo-section h2 {
  max-width: 690px;
  margin: 0;
  color: var(--limo-text);
  font-size: clamp(30px, 2.85vw, 42px);
  line-height: 1.18;
  letter-spacing: -.055em;
  font-weight: 500;
}

.limo-copy p,
.limo-section-head p,
.limo-design-copy p,
.limo-support p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #2f3339;
  font-size: 15px;
  line-height: 1.8;
}

.limo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 38px 0 34px;
}

.limo-metrics strong,
.limo-side-specs strong {
  color: #25272c;
  font-size: 34px;
  line-height: 1;
  font-weight: 650;
}

.limo-metrics span,
.limo-side-specs span {
  margin-left: 7px;
  font-size: 16px;
  color: #24272d;
}

.limo-metrics p,
.limo-side-specs p {
  margin: 7px 0 0;
  color: #2e333a;
  font-size: 15px;
  font-weight: 600;
}

.limo-soft-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 300px;
  padding: 20px 24px;
  border-radius: 9px;
  background: #eef3fb;
  color: var(--limo-navy);
  font-weight: 650;
}

.limo-soft-btn i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 50%;
  background: #dde6f2;
}

.limo-back-car img {
  width: 104%;
  margin-top: -12px;
  object-fit: contain;
}

.limo-versions {
  background: #f8fafc;
}

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

.limo-version-grid article {
  padding: 28px;
  border: 1px solid #e4ebf2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 38, 72, .08);
}

.limo-version-grid span {
  color: var(--limo-blue);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.limo-version-grid h3 {
  margin: 12px 0;
  color: var(--limo-text);
  font-size: 20px;
}

.limo-version-grid strong {
  display: block;
  color: var(--limo-navy);
  font-size: 23px;
}

.limo-version-grid p {
  margin: 12px 0 0;
  color: var(--limo-muted);
  line-height: 1.65;
}

.limo-version-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--limo-navy);
  font-weight: 650;
}

.limo-color-stage {
  padding-top: 74px;
  background: #f5f6f8;
}

.limo-section-head {
  display: grid;
  grid-template-columns: 1fr .8fr auto;
  gap: 36px;
  align-items: center;
  margin-bottom: 28px;
}

.limo-section-head-stacked {
  display: block;
}

.limo-section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #36393f;
  font-size: 14px;
  font-weight: 500;
}

.limo-section-head-stacked h2 {
  max-width: none;
}

.limo-section-head-stacked p {
  max-width: 760px;
  margin-top: 18px;
}

.limo-section-head p {
  margin: 0;
}

.limo-section-head .limo-soft-btn {
  min-width: 230px;
  justify-self: end;
}

.limo-configurator {
  min-height: 665px;
  display: grid;
  grid-template-columns: 170px 1fr 270px;
  gap: 40px;
  align-items: center;
  padding: 54px 40px 34px;
  background: #fff;
}

.limo-swatches {
  display: grid;
  gap: 22px;
  align-content: start;
  width: min(360px, calc(100vw - 48px));
  max-height: min(560px, calc(100vh - 180px));
  margin-left: -10px;
  padding: 10px 14px 10px 10px;
  direction: rtl;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 86, 166, .38) transparent;
  -webkit-overflow-scrolling: touch;
}

.limo-swatches::-webkit-scrollbar {
  width: 4px;
}

.limo-swatches::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.limo-swatches::-webkit-scrollbar-track {
  background: transparent;
}

.limo-swatches::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(15, 86, 166, .32);
}

.limo-swatches::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 86, 166, .5);
}

.limo-swatches .swatch {
  position: relative;
  direction: ltr;
  justify-self: end;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 7px 13px rgba(255, 255, 255, .25), inset 0 -10px 18px rgba(0, 0, 0, .32), 0 0 0 8px #fff, 0 16px 28px rgba(16, 33, 61, .08);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, outline-color .25s ease;
}

.limo-swatches .swatch:hover {
  transform: translateX(4px) scale(1.04);
  box-shadow: inset 0 7px 13px rgba(255, 255, 255, .28), inset 0 -10px 18px rgba(0, 0, 0, .3), 0 0 0 8px #fff, 0 20px 36px rgba(16, 33, 61, .14);
}

.limo-swatches .swatch.active {
  outline: 3px solid var(--limo-blue);
  outline-offset: 5px;
}

.limo-swatches .swatch span {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  color: #25272d;
  text-align: left;
}

.limo-swatches .swatch strong,
.limo-swatches .swatch em {
  display: block;
  font-style: normal;
  line-height: 1.2;
}

.limo-swatches .swatch strong {
  font-size: 12px;
  font-weight: 500;
}

.limo-swatches .swatch em {
  margin-top: 4px;
  color: #788391;
  font-size: 12px;
  font-weight: 500;
}

.limo-rotate-frame {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.limo-rotate-frame.is-dragging {
  cursor: grabbing;
}

.limo-rotate-frame.is-spinning::before {
  content: "";
  position: absolute;
  inset: 54px 10% 74px;
  border-radius: 50%;
  border: 1px dashed rgba(20, 102, 204, .34);
  animation: limoSpinRing 1.1s linear infinite;
  pointer-events: none;
}

.limo-small-wordmark {
  position: absolute;
  top: 68px;
  left: 50%;
  width: min(48vw, 560px);
  transform: translateX(-50%) scale(2.3);
  opacity: .1;
}

.limo-small-wordmark-text {
  width: min(70vw, 720px);
  text-align: center;
  font-size: clamp(44px, 7vw, 110px);
  font-weight: 950;
  line-height: .86;
  letter-spacing: -.06em;
  color: #0f172a;
  transform: translateX(-50%);
}

.limo-rotate-frame #rotateCar {
  position: relative;
  z-index: 1;
  width: min(58vw, 690px);
  filter: drop-shadow(0 28px 22px rgba(0, 0, 0, .18));
  transform: perspective(1100px) rotateY(var(--rotate-tilt, 0deg)) translateX(var(--rotate-shift, 0px)) scale(var(--rotate-scale, 1));
  transition: opacity .16s ease, transform .12s linear, filter .16s ease;
  will-change: transform, opacity;
  pointer-events: none;
  -webkit-user-drag: none;
}

.limo-rotate-frame #rotateCar.is-switching {
  opacity: .64;
  --rotate-scale: .992;
  --rotate-shift: 0px;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, .16));
}

.limo-rotate-frame::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 64px;
  height: 52px;
  border-bottom: 1px solid #a9afb5;
  border-radius: 50%;
}

.limo-360-badge {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 48%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  color: var(--limo-navy);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.limo-rotate-frame.is-spinning .limo-360-badge,
.limo-360-badge:hover {
  transform: translate(-50%, -50%) scale(1.06);
  color: var(--limo-blue);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 34px rgba(20, 102, 204, .22);
}

.limo-360-badge:disabled,
.limo-360-badge.is-disabled,
.limo-360-badge:disabled:hover,
.limo-360-badge.is-disabled:hover {
  opacity: .52;
  cursor: not-allowed;
  transform: translate(-50%, -50%);
  color: var(--limo-navy);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 24px rgba(0, 0, 0, .12);
}

.limo-360-badge i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
  color: #fff;
  background: var(--limo-blue);
  border-radius: 50%;
  font-size: 9px;
}

.limo-360-badge:disabled i,
.limo-360-badge.is-disabled i {
  background: #8a95a3;
}

.limo-360-badge strong,
.limo-360-badge span {
  display: block;
  line-height: 1;
}

.limo-360-badge strong {
  font-size: 12px;
  font-weight: 500;
}

.limo-360-badge span {
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.limo-rotate-hint {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid rgba(20, 102, 204, .14);
  border-radius: 999px;
  color: #405267;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 32px rgba(15, 23, 42, .08);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 650;
  pointer-events: none;
}

.limo-rotate-hint i {
  color: var(--limo-blue);
}

.limo-rotate-hint em {
  font-style: normal;
  color: #8a95a3;
  font-size: 12px;
}

@keyframes limoSpinRing {
  to {
    transform: rotate(360deg);
  }
}

.limo-side-specs {
  display: grid;
  gap: 26px;
}

.limo-side-specs a {
  display: grid;
  place-items: center;
  height: 52px;
  margin-top: 8px;
  background: var(--limo-navy);
  color: #fff;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .14em;
}

.limo-demo-tabs {
  background:
    radial-gradient(circle at 14% 8%, rgba(0, 87, 200, .08), transparent 28rem),
    #fff;
}

.limo-tab-head {
  grid-template-columns: 1fr .9fr;
}

.limo-tab-nav {
  position: sticky;
  top: 132px;
  z-index: 20;
  display: flex;
  gap: 0;
  margin: 0 0 34px;
  overflow-x: auto;
  border: 1px solid #dfe5ec;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.limo-tab-nav .tab-link {
  flex: 1;
  min-width: 160px;
  border: 0;
  border-right: 1px solid #dfe5ec;
  background: transparent;
  color: #23262c;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  text-align: center;
  transition: background .22s ease, color .22s ease;
}

.limo-tab-nav .tab-link:last-child {
  border-right: 0;
}

.limo-tab-nav .tab-link:hover,
.limo-tab-nav .tab-link.active {
  background: var(--limo-blue);
  color: #fff;
}

.limo-demo-tabs .tab-panel {
  animation: fadeUp .48s ease both;
}

.limo-feature-cards,
.limo-exterior-panel,
.limo-interior-panel {
  display: grid;
  gap: 24px;
}

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

.limo-feature-cards article,
.limo-exterior-panel,
.limo-interior-panel {
  background: #fff;
  border: 1px solid #e1e7ee;
  box-shadow: 0 18px 42px rgba(15, 38, 72, .07);
}

.limo-feature-cards img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.limo-feature-cards h3,
.limo-feature-cards p {
  margin-left: 24px;
  margin-right: 24px;
}

.limo-feature-cards h3 {
  margin-top: 24px;
  color: #23262c;
  font-size: 22px;
}

.limo-feature-cards p {
  margin-bottom: 26px;
  color: #5d6570;
  line-height: 1.75;
}

.limo-exterior-panel {
  grid-template-columns: .85fr 1.05fr 260px;
  align-items: center;
  padding: 38px;
}

.limo-exterior-panel h3,
.limo-interior-panel h3 {
  margin: 10px 0 16px;
  color: #23262c;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.05;
}

.limo-exterior-panel p,
.limo-interior-panel p {
  color: #4d5662;
  line-height: 1.8;
}

.limo-exterior-panel>img {
  width: 100%;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, .16));
}

.limo-exterior-panel aside {
  display: grid;
  gap: 9px;
  padding-left: 24px;
  border-left: 1px solid #dde5ee;
}

.limo-exterior-panel aside strong {
  color: var(--limo-blue);
  font-size: 21px;
}

.limo-exterior-panel aside span {
  margin-bottom: 10px;
  color: #5d6570;
  font-weight: 650;
}

.limo-interior-panel {
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  overflow: hidden;
}

.limo-interior-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.limo-interior-panel>div {
  display: grid;
  align-content: center;
  padding: 44px;
}

.limo-interior-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.limo-interior-points span {
  border-radius: 999px;
  background: #eef3fb;
  color: var(--limo-navy);
  padding: 10px 16px;
  font-weight: 650;
}

.limo-demo-tabs .vf-feature-nav {
  margin-top: 0;
}

.limo-showcase {
  position: relative;
  overflow: hidden;
  padding: 42px 0 60px;
}

.limo-showcase-dark {
  padding-left: 18px;
  padding-right: 18px;
  background: #2f2f31;
  border-radius: 8px;
}

.limo-showcase-track {
  margin: 0 -12px;
}

.limo-showcase-track:not(.slick-initialized) {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.limo-showcase-slide {
  padding: 0 12px;
}

.limo-showcase-track .slick-slide {
  cursor: pointer;
  opacity: .42;
  transform: scale(.88);
  transition: transform .32s ease, opacity .32s ease;
}

.limo-showcase-track .slick-active {
  opacity: .72;
}

.limo-showcase-track .slick-center {
  opacity: 1;
  transform: scale(1);
}

.limo-showcase-card {
  background: #fff;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, .16);
}

.limo-showcase-dark .limo-showcase-card {
  background: #f7f8f9;
  box-shadow: none;
}

.limo-showcase-light .limo-showcase-card {
  border: 1px solid #e4e9ef;
  box-shadow: none;
}

.limo-showcase-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  overflow: hidden;
  background: #d7dee6;
}

.limo-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.limo-showcase-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 92px 34px 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .78));
  color: #fff;
  overflow: hidden;
  transition: background .32s ease, padding .32s ease;
}

.limo-showcase-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.16;
  transition: transform .34s ease;
}

.limo-showcase-overlay p {
  max-width: 100%;
  max-height: 0;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition: max-height .42s cubic-bezier(.2, .8, .2, 1), opacity .28s ease, transform .42s cubic-bezier(.2, .8, .2, 1), margin-top .28s ease;
}

.limo-showcase-card:hover .limo-showcase-overlay,
.limo-showcase-card:focus-within .limo-showcase-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .82));
}

.limo-showcase-card:hover .limo-showcase-overlay h3,
.limo-showcase-card:focus-within .limo-showcase-overlay h3 {
  transform: translateY(-4px);
}

.limo-showcase-card:hover .limo-showcase-overlay p,
.limo-showcase-card:focus-within .limo-showcase-overlay p {
  max-height: 280px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

.limo-showcase-summary {
  display: none;
  padding: 18px 22px 22px;
  background: #fff;
}

.limo-showcase-dark .limo-showcase-summary {
  background: #f7f8f9;
}

.limo-showcase-summary h3 {
  margin: 0;
  color: #20242a;
  font-size: 20px;
  line-height: 1.25;
}

.limo-showcase-summary p {
  margin: 8px 0 0;
  color: #5d6570;
  font-size: 14px;
  line-height: 1.55;
}

.limo-showcase-track .slick-list {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.limo-showcase-track .slick-dots {
  bottom: -34px;
  display: flex !important;
  justify-content: center;
  gap: 10px;
}

.limo-showcase-track .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}

.limo-showcase-track .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, .38);
}

.limo-showcase-light .slick-dots li button {
  background: #ccd4dd;
}

.limo-showcase-track .slick-dots li button:before {
  display: none;
}

.limo-showcase-track .slick-dots li.slick-active button {
  background: var(--limo-blue);
}

.limo-interior-panel.is-image-only {
  grid-template-columns: 1fr;
}

.limo-interior-panel.is-image-only img {
  height: auto;
}

.limo-interior-panel.is-image-only>div {
  display: none;
}

.limo-demo-tabs .vf-spec-table-wrap {
  margin-top: 0;
  border: 1px solid #e0e6ea;
  box-shadow: 0 18px 42px rgba(15, 38, 72, .07);
}

.limo-compare-wrap {
  border: 1px solid #dde5ee;
  box-shadow: 0 18px 42px rgba(15, 38, 72, .07);
}

.limo-compare-wrap .vf-spec-table {
  min-width: 980px;
}

.limo-compare-wrap .vf-spec-table th,
.limo-compare-wrap .vf-spec-table td {
  vertical-align: top;
}

.limo-compare-wrap .vf-spec-table th:first-child,
.limo-compare-wrap .vf-spec-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 240px;
}

.limo-compare-wrap .vf-spec-table th:first-child {
  z-index: 2;
}

.limo-compare-wrap .vf-spec-table td:first-child {
  background: #f7f9fc;
  color: #1f2937;
}

.limo-version-filter {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin: 26px 0 22px;
  text-align: left;
}

.limo-version-filter label {
  margin: 0;
  color: var(--limo-text);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.2;
}

.limo-version-filter select {
  width: 100%;
  min-height: 58px;
  padding: 0 48px 0 18px;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  background: #f8f7f7;
  color: #111827;
  font-size: 18px;
  font-weight: 650;
  outline: none;
}

.limo-version-filter select:focus {
  border-color: var(--limo-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 200, .14);
}

.limo-version-spec-table {
  display: none;
}

.limo-version-spec-table.active {
  display: block;
}

.limo-filter-compare-wrap {
  margin-top: 0;
  border-color: #ddd;
  box-shadow: none;
}

.limo-filter-compare-wrap .vf-spec-table {
  min-width: 720px;
  table-layout: fixed;
}

.limo-filter-compare-wrap .vf-spec-table th {
  height: 76px;
  border-color: #fff;
  color: #fff;
  text-align: center;
  font-size: 22px;
}

.limo-filter-compare-wrap .vf-spec-table th:first-child,
.limo-filter-compare-wrap .vf-spec-table td:first-child {
  position: static;
  width: 50%;
}

.limo-filter-compare-wrap .vf-spec-table th.is-model {
  background: #c8102e;
}

.limo-filter-compare-wrap .vf-spec-table th.is-version {
  background: #002c5f;
}

.limo-filter-compare-wrap .vf-spec-table td {
  height: 70px;
  border-color: #e1e1e1;
  color: #676767;
  font-size: 18px;
  line-height: 1.45;
  vertical-align: middle;
}

.limo-filter-compare-wrap .vf-spec-table td:nth-child(2) {
  text-align: center;
  font-weight: 650;
}

.limo-filter-compare-wrap .vf-spec-table .is-section td {
  position: static;
  width: auto;
  background: #f6f3f2;
  color: #666;
  font-size: 22px;
  font-weight: 650;
  text-align: left;
}

.limo-design {
  background: #fff;
}

.limo-design-copy {
  max-width: 740px;
  margin-bottom: 36px;
}

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

.limo-gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  background: #eef1f3;
}

.limo-video {
  position: relative;
  background: #111;
  min-height: 135vh;
}

.limo-video-poster {
  position: sticky;
  top: 79px;
  height: calc(100vh - 79px);
  min-height: 560px;
  overflow: hidden;
  background: #05070a;
}

.limo-video-poster img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.limo-video-poster video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .18;
  filter: blur(8px) saturate(.82);
  transform: scale(1.04);
}

.limo-video-poster::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, .18);
}

.limo-video-poster button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--limo-navy);
  font-size: 25px;
  cursor: pointer;
}

.limo-support {
  text-align: center;
  background: #f7f8fa;
}

.limo-support h2,
.limo-support p {
  margin-left: auto;
  margin-right: auto;
}

.limo-tools {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.limo-tools a {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 26px;
  background: #fff;
  color: #25272d;
  border: 1px solid #e5e8ee;
  transition: .25s ease;
}

.limo-tools a:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 68, 165, .13);
}

.limo-tools i {
  color: var(--limo-navy);
  font-size: 32px;
}

.limo-tools span {
  font-weight: 650;
}

.limo-spec-section {
  background: #fff;
}

.limo-spec-section h2 {
  margin-bottom: 42px;
}

.limo-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e2e6eb;
  border-left: 1px solid #e2e6eb;
}

.limo-spec-grid div {
  min-height: 132px;
  padding: 28px;
  border-right: 1px solid #e2e6eb;
  border-bottom: 1px solid #e2e6eb;
}

.limo-spec-grid strong {
  display: block;
  color: #20242a;
  font-size: 24px;
  line-height: 1.3;
}

.limo-spec-grid span {
  display: block;
  margin-top: 10px;
  color: #5d6570;
  font-size: 14px;
  font-weight: 600;
}

.limo-sticky-cta {
  display: none;
}

.limo-sticky-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1.1;
}

.vf-sticky-cta .limo-sticky-price {
  display: flex;
}

.limo-sticky-price del {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

@media (min-width: 721px) {
  .limo-subnav {
    position: fixed;
    left: clamp(12px, 2.2vw, 34px);
    top: 50%;
    z-index: 80;
    width: 52px;
    height: 352px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }

  .limo-subnav.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .limo-subnav .container {
    width: 100%;
    min-height: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .limo-subnav-rail {
    position: absolute;
    inset: 0;
    display: block;
    width: 52px;
    cursor: pointer;
  }

  .limo-subnav-rail-track {
    position: absolute;
    left: 22px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: rgba(15, 23, 42, .14);
  }

  .limo-subnav-rail-thumb {
    --limo-nav-thumb-size: 58px;
    left: -1px;
    top: calc(var(--limo-nav-progress, 0) * (100% - var(--limo-nav-thumb-size)));
    width: 4px;
    height: var(--limo-nav-thumb-size);
    border-radius: 999px;
    background: var(--limo-blue);
    box-shadow: 0 0 0 6px rgba(0, 87, 200, .14);
    transition: top .28s ease, background-color .2s ease;
  }

  .limo-subnav-links {
    position: absolute;
    left: 16px;
    top: 0;
    display: grid;
    gap: 4px;
    width: 250px;
    padding: 18px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-18px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(210, 218, 227, .96);
    border-radius: 8px;
    box-shadow: 0 22px 44px rgba(15, 23, 42, .16);
  }

  .limo-subnav:hover .limo-subnav-links,
  .limo-subnav:focus-within .limo-subnav-links,
  .limo-subnav.is-open .limo-subnav-links {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .limo-subnav .vf-nav-link {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 28px 0 48px;
    border: 0;
    color: #28313c;
    font-size: 17px;
    font-weight: 650;
    transition: background .18s ease, color .18s ease, padding-left .18s ease;
  }

  .limo-subnav .vf-nav-link:hover,
  .limo-subnav .vf-nav-link:focus-visible,
  .limo-subnav .vf-nav-link.active {
    padding-left: 56px;
    background: #eff2f5;
    color: #121926;
  }
}

@media (max-width: 1180px) {
  .limo-hero-specbar {
    padding-left: 28px;
    padding-right: 28px;
  }

  .limo-hero-specbar.is-expanded {
    padding-left: 22px;
    padding-right: 22px;
  }

  .limo-hero-specbar.is-expanded .limo-spec strong,
  .limo-hero-specbar.is-expanded .limo-price strong {
    font-size: 24px;
  }

  .limo-hero-swatches {
    left: 22px;
    top: 176px;
  }

  .limo-configurator,
  .limo-intro-grid,
  .limo-design-spotlight,
  .limo-section-head,
  .limo-tab-head,
  .limo-exterior-panel,
  .limo-interior-panel {
    grid-template-columns: 1fr;
  }

  .limo-feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .limo-version-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .limo-swatches {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    width: 100%;
    max-height: none;
    margin-left: 0;
    padding: 0;
    direction: ltr;
    overflow: visible;
    scrollbar-gutter: auto;
  }

  .limo-swatches .swatch span {
    display: none;
  }

  .limo-side-specs {
    grid-template-columns: repeat(4, 1fr);
  }

  .limo-showcase-overlay {
    padding: 78px 24px 24px;
  }

  .limo-showcase-overlay h3 {
    font-size: 24px;
  }

  .limo-showcase-overlay p {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .limo-page .container {
    width: min(100% - 28px, 680px);
  }

  .limo-flow-section {
    scroll-margin-top: 118px;
  }

  .limo-subnav .container {
    display: block;
    width: 100%;
    padding: 0;
  }

  .limo-subnav-rail {
    display: none;
  }

  .limo-subnav-toggle {
    display: flex;
  }

  .limo-subnav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    padding: 10px 0;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(148, 163, 184, .2);
    box-shadow: 0 24px 44px rgba(15, 23, 42, .16);
  }

  .limo-subnav.is-open .limo-subnav-links {
    display: grid;
  }

  .limo-subnav .vf-nav-link {
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 0 22px;
    font-size: 14px;
    border-bottom: 0;
    border-left: 4px solid transparent;
  }

  .limo-subnav .vf-nav-link.active {
    border-left-color: var(--limo-blue);
  }

  .limo-subnav-toggle i {
    transition: transform .2s ease;
  }

  .limo-subnav.is-open .limo-subnav-toggle i {
    transform: rotate(180deg);
  }

  .limo-showcase {
    padding: 26px 0 48px;
  }

  .limo-showcase-dark {
    padding-left: 10px;
    padding-right: 10px;
  }

  .limo-showcase-track:not(.slick-initialized) {
    grid-template-columns: 1fr;
  }

  .limo-showcase-track {
    margin: 0 -8px;
  }

  .limo-showcase-slide {
    padding: 0 8px;
  }

  .limo-showcase-media {
    aspect-ratio: 4 / 3;
  }

  .limo-showcase-overlay {
    padding: 64px 20px 20px;
  }

  .limo-showcase-overlay h3 {
    font-size: 22px;
  }

  .limo-showcase-overlay p {
    font-size: 14px;
    max-width: 100%;
  }

  .limo-hero {
    height: 560px;
    min-height: 560px;
  }

  .limo-hero-wordmark {
    top: 58px;
    width: 120vw;
    position: relative;
  }

  .limo-hero-car {
    top: 78px;
    width: 142vw;
    position: relative;
  }

  .limo-hero-swatches {
    top: 118px;
    left: 18px;
    gap: 14px;
    max-height: calc(100% - 250px);
    padding: 16px 10px 16px 12px;
  }

  .limo-hero-swatches .swatch {
    width: 28px;
    height: 28px;
    box-shadow: inset 0 4px 8px rgba(255, 255, 255, .24), inset 0 -6px 10px rgba(0, 0, 0, .2), 0 0 0 5px rgba(255, 255, 255, .88), 0 12px 18px rgba(16, 33, 61, .08);
  }

  .limo-hero-specbar {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    min-height: 250px;
    padding: 28px 16px 34px;
    clip-path: none;
  }

  .limo-hero-specbar.is-expanded {
    grid-template-columns: repeat(2, 1fr);
    min-height: 340px;
    padding: 24px 16px 30px;
  }

  .limo-price {
    grid-column: 1 / -1;
    order: 5;
  }

  .limo-spec strong,
  .limo-price strong {
    font-size: 20px;
    line-height: 1.12;
    letter-spacing: -.035em;
  }

  .limo-price strong {
    font-size: 25px;
  }

  .limo-spec span,
  .limo-price small {
    font-size: 12px;
  }

  .limo-spec p,
  .limo-price span {
    margin-top: 6px;
    font-size: 12px;
  }

  .limo-section {
    padding: 62px 0;
  }

  .limo-copy h1,
  .limo-section h2 {
    font-size: 27px;
  }

  .limo-metrics,
  .limo-side-specs,
  .limo-tools,
  .limo-spec-grid,
  .limo-gallery,
  .limo-feature-cards,
  .limo-version-grid,
  .limo-demo-tabs .vf-feature-grid.active {
    /* grid-template-columns: 1fr; */
  }

  .limo-tab-nav {
    top: 80px;
    margin-left: -14px;
    margin-right: -14px;
    border-left: 0;
    border-right: 0;
  }

  .limo-tab-nav .tab-link {
    flex: 0 0 auto;
    min-width: 142px;
    padding: 15px 16px;
    font-size: 13px;
  }

  .limo-feature-cards img {
    height: 230px;
  }

  .limo-exterior-panel {
    padding: 22px;
  }

  .limo-exterior-panel aside {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #dde5ee;
    padding-top: 18px;
  }

  .limo-interior-panel img {
    height: 300px;
  }

  .limo-interior-panel>div {
    padding: 26px;
  }

  .limo-color-stage {
    padding-top: 42px;
  }

  .limo-configurator {
    min-height: 0;
    gap: 18px;
    padding: 18px 12px 24px;
  }

  .limo-rotate-frame {
    min-height: 300px;
    margin-top: -12px;
  }

  .limo-design-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .limo-primary-btn {
    width: 100%;
  }

  .limo-rotate-frame #rotateCar {
    width: 118vw;
  }

  .limo-rotate-hint {
    bottom: 12px;
    min-width: 0;
    width: calc(100% - 32px);
    padding: 10px 12px;
    font-size: 12px;
  }

  .limo-metrics,
  .limo-side-specs {
    gap: 14px;
  }

  .limo-metrics>div,
  .limo-side-specs>div {
    padding: 16px;
    border: 1px solid #e4eaf1;
    border-radius: 16px;
    background: rgba(255, 255, 255, .84);
  }

  .limo-metrics strong,
  .limo-side-specs strong {
    font-size: 22px;
    line-height: 1.18;
  }

  .limo-metrics span,
  .limo-side-specs span {
    margin-left: 4px;
    font-size: 12px;
  }

  .limo-metrics p,
  .limo-side-specs p {
    font-size: 12px;
    line-height: 1.45;
  }

  .limo-side-specs {
    display: none;
  }

  .limo-spec-grid div {
    min-height: 0;
    padding: 18px;
  }

  .limo-spec-grid strong {
    font-size: 19px;
  }

  .limo-spec-grid span {
    font-size: 12px;
  }

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

  .limo-spec-grid div {
    min-height: 92px;
    padding: 12px 8px;
  }

  .limo-spec-grid strong {
    font-size: 15px;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .limo-spec-grid span {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.3;
  }

  .limo-version-filter {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px 0 18px;
  }

  .limo-version-filter label {
    font-size: 24px;
  }

  .limo-version-filter select {
    min-height: 54px;
    font-size: 16px;
  }

  .limo-filter-compare-wrap .vf-spec-table {
    min-width: 100%;
  }

  .limo-filter-compare-wrap .vf-spec-table th {
    height: 66px;
    font-size: 18px;
  }

  .limo-filter-compare-wrap .vf-spec-table td {
    height: 62px;
    font-size: 15px;
  }

  .limo-filter-compare-wrap .vf-spec-table .is-section td {
    font-size: 18px;
  }

  .limo-video-poster {
    position: sticky;
    top: 79px;
    height: calc(100vh - 79px);
    min-height: 420px;
  }
}

/* Site-wide dark mode */
.theme-only {
  display: inline-grid !important;
  place-items: center;
}

body.dark,
body.dark .figma-home,
body.dark .cellphone-products,
body.dark .shop-shell,
body.dark .vf-shop-page,
body.dark .vf-part-detail-page,
body.dark .price-like-hyundai,
body.dark .price-page,
body.dark .service-page,
body.dark .news-page,
body.dark .vf-form-page,
body.dark .calc-page,
body.dark .deposit-page,
body.dark .article-detail-page,
body.dark .vf-detail,
body.dark .limo-page {
  background:
    radial-gradient(circle at top left, rgba(35, 183, 255, .1), transparent 34rem),
    linear-gradient(180deg, #061225 0%, #091a33 48%, #071426 100%);
  color: #eef6ff;
}

body.dark.page .site-header,
body.dark[data-page="detail"] .site-header {
  background: rgba(7, 20, 38, .94);
  border-bottom-color: rgba(255, 255, 255, .12);
}

body.dark .nav-menu>a,
body.dark .nav-menu>button,
body.dark[data-page="detail"] .nav-menu>a,
body.dark[data-page="detail"] .nav-menu>button,
body.dark[data-page="detail"] .detail-account {
  color: #e9f4ff;
}

body.dark .icon-btn,
body.dark .cell-filter-pill,
body.dark .cell-filter-popover,
body.dark .cell-sort-panel,
body.dark .home-car-card,
body.dark .mega-menu,
body.dark .mega-car,
body.dark .quick-card,
body.dark .card,
body.dark .product-card,
body.dark .price-card,
body.dark .news-card,
body.dark .form-panel,
body.dark .shop-card,
body.dark .shop-sidebar,
body.dark .shop-toolbar,
body.dark .shop-mini-cart,
body.dark .cart-drawer,
body.dark .member-tier-card,
body.dark .member-benefit-panel,
body.dark .member-level-grid article,
body.dark .member-birthday-code,
body.dark .member-voucher-history div,
body.dark .vf-part-gallery,
body.dark .vf-part-info,
body.dark .vf-part-order-card,
body.dark .part-related-card,
body.dark .service-card-pro,
body.dark .news-category-card,
body.dark .article-card,
body.dark .article-content,
body.dark .article-related,
body.dark .article-step-grid div,
body.dark .spec-box,
body.dark .feature-card,
body.dark .spec-table,
body.dark .vf-hero-specs,
body.dark .vf-price-chip,
body.dark .vf-story-card,
body.dark .vf-feature-grid article,
body.dark .vf-spec-table-wrap,
body.dark .calc-card,
body.dark .deposit-card,
body.dark .vf-form-card,
body.dark .vf-form-panel,
body.dark .deposit-preview,
body.dark .modal-card,
body.dark .limo-configurator,
body.dark .limo-feature-cards article,
body.dark .limo-exterior-panel,
body.dark .limo-interior-panel,
body.dark .limo-tools a,
body.dark .limo-spec-grid div,
body.dark .vf-light-footer {
  background: rgba(15, 32, 58, .94);
  border-color: rgba(255, 255, 255, .12);
  color: #eef6ff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
}

body.dark .cellphone-product-hero,
body.dark .cellphone-product-section,
body.dark .vf-shop-top,
body.dark .vf-part-head,
body.dark .service-page,
body.dark .news-page,
body.dark .vf-form-page,
body.dark .calc-page,
body.dark .deposit-page,
body.dark .home-cars-section,
body.dark .home-service-block,
body.dark .home-charge,
body.dark .home-news,
body.dark .home-events,
body.dark .limo-section,
body.dark .limo-color-stage,
body.dark .limo-demo-tabs,
body.dark .limo-design,
body.dark .limo-support,
body.dark .limo-spec-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(30, 115, 190, .12), transparent 26rem),
    #071426;
}

body.dark .home-charge {
  background:
    linear-gradient(180deg, rgba(35, 133, 205, .94) 0%, rgba(4, 76, 142, .97) 100%),
    url("../images/charging-station.jpg") center/cover no-repeat;
}

body.dark .home-events .home-container {
  background:
    linear-gradient(180deg, rgba(34, 92, 150, .16), rgba(9, 26, 51, 0) 34%),
    rgba(9, 26, 51, .9);
  border: 1px solid rgba(122, 174, 232, .18);
}

body.dark .home-event-feature .tag {
  background: rgba(191, 222, 255, .95);
  color: #143153;
}

body.dark .home-event-feature h3,
body.dark .home-event-feature h3 a {
  color: #63adff;
}

body.dark .home-event-feature p {
  color: #d7e6f8;
}

body.dark .home-event-feature a.news-more,
body.dark .home-event-list a {
  color: #72b8ff;
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark strong,
body.dark .home-car-card h3,
body.dark .home-specs b,
body.dark .cell-sort-panel h2,
body.dark .cell-result-head h2,
body.dark .vf-part-info h1,
body.dark .vf-part-description h2,
body.dark .vf-part-order-card h3,
body.dark .vf-part-order-product strong,
body.dark .vf-part-related h2,
body.dark .limo-copy h1,
body.dark .limo-section h2,
body.dark .limo-exterior-panel h3,
body.dark .limo-interior-panel h3,
body.dark .limo-spec-grid strong,
body.dark .vf-light-footer .footer-grid h4 {
  color: #f4f9ff;
}

body.dark p,
body.dark span,
body.dark small,
body.dark .breadcrumb,
body.dark .vf-part-breadcrumb,
body.dark .vf-part-breadcrumb a,
body.dark .vf-part-description p,
body.dark .vf-part-description li,
body.dark .vf-part-stock,
body.dark .home-specs,
body.dark .cell-result-head strong,
body.dark .cell-filter-options button,
body.dark .limo-copy p,
body.dark .limo-section-head p,
body.dark .limo-design-copy p,
body.dark .limo-support p,
body.dark .limo-exterior-panel p,
body.dark .limo-interior-panel p,
body.dark .limo-spec-grid span,
body.dark .vf-light-footer .footer-grid p,
body.dark .vf-light-footer .footer-grid a {
  color: #b8c9df;
}

body.dark .home-charge-head p,
body.dark .home-charge-grid h3,
body.dark .home-charge-grid h3 a,
body.dark .home-charge-grid .home-charge-cta {
  color: #fff;
}

body.dark .home-charge-grid .home-charge-cta:hover {
  color: #0f63aa;
}

body.dark .home-tools-section {
  background: #071426;
}

body.dark .home-tools-title {
  color: #f4f9ff;
}

body.dark .home-tools a {
  color: #9bd7ff;
  background: rgba(15, 32, 58, .94);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

body.dark .home-tool-copy small {
  color: #b8c9df;
}

body.dark .home-tools a:hover {
  background: #12355c;
  border-color: rgba(88, 166, 255, .36);
  color: #fff;
}

body.dark .home-service-icon {
  color: #58a6ff;
}

body.dark .home-service-icon img {
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .22));
}

body.dark .home-service-list .home-service-cta {
  color: #9bd7ff;
  border-color: rgba(88, 166, 255, .42);
}

body.dark .home-service-list .home-service-cta:hover {
  background: rgba(88, 166, 255, .12);
}

body.dark .cell-filter-options button,
body.dark .cell-sort-tabs button,
body.dark .mega-tab,
body.dark input,
body.dark select,
body.dark textarea,
body.dark .footer-subscribe {
  background: rgba(7, 20, 38, .88);
  border-color: rgba(255, 255, 255, .14);
  color: #edf6ff;
}

body.dark .select2-container--default .select2-selection--single,
body.dark .select2-dropdown,
body.dark .xdsoft_datetimepicker {
  background: #0f203a;
  border-color: rgba(255, 255, 255, .14) !important;
  color: #edf6ff;
}

body.dark .select2-container--default .select2-selection--single .select2-selection__rendered,
body.dark .select2-container--default .select2-results__option,
body.dark .xdsoft_datetimepicker .xdsoft_label,
body.dark .xdsoft_datetimepicker .xdsoft_calendar td,
body.dark .xdsoft_datetimepicker .xdsoft_calendar th {
  color: #edf6ff;
}

body.dark .select2-search--dropdown {
  background: #071426;
}

body.dark .select2-container--default .select2-search--dropdown .select2-search__field {
  background: rgba(7, 20, 38, .88);
  border-color: rgba(255, 255, 255, .14);
  color: #edf6ff;
}

body.dark .select2-container--default .select2-results__option[aria-selected=true] {
  background: rgba(88, 166, 255, .18);
  color: #9bd7ff;
}

body.dark .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,
body.dark .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month {
  color: rgba(237, 246, 255, .36) !important;
}

body.dark .cell-filter-options button.active,
body.dark .cell-sort-tabs button.active,
body.dark .home-pills button.active,
body.dark .limo-tab-nav .tab-link.active {
  background: #1e73be;
  color: #fff;
  border-color: #58a6ff;
}

body.dark .cell-filter-pill.filter-main {
  background: rgba(15, 32, 58, .96);
  border-color: rgba(255, 255, 255, .18);
  color: #eaf4ff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .26);
}

body.dark .cell-filter-pill.filter-main.has-active,
body.dark .cell-filter-pill.filter-main[aria-expanded="true"] {
  background: rgba(255, 48, 72, .08);
  border-color: rgba(255, 76, 96, .78);
  color: #ff6476;
  box-shadow: 0 18px 36px rgba(255, 48, 72, .14);
}

body.dark .cell-filter-count {
  background: #ff4b61;
  color: #fff;
}

body.dark .cell-active-filter {
  background: rgba(255, 48, 72, .14);
  border-color: rgba(255, 92, 112, .58);
  color: #ffe4e9;
  box-shadow: 0 14px 28px rgba(255, 48, 72, .13);
}

body.dark .cell-active-filter span,
body.dark .cell-active-filter strong {
  color: #fff1f4;
}

body.dark .cell-active-filter i {
  background: #ff4b61;
  color: #fff;
}

body.dark .cell-filter-apply,
body.dark .btn.primary,
body.dark .header-test-drive {
  color: #fff;
}

body.dark .cell-filter-close {
  background: rgba(7, 20, 38, .88);
  color: #edf6ff;
  border-color: rgba(255, 255, 255, .14);
}

body.dark .product-empty,
body.dark .empty-state {
  background: rgba(15, 32, 58, .94);
  color: #b8c9df;
  border-color: rgba(255, 255, 255, .18);
}

body.dark .vf-light-footer .footer-bottom,
body.dark .footer-contact-row {
  border-color: rgba(255, 255, 255, .12);
}

body.dark .footer-subscribe button {
  background: #1e73be;
  color: #fff;
}

body.dark img.footer-logo-img {
  filter: brightness(0) invert(1);
}

/* Dark mode refinements for VinFast Shop / parts page */
body.dark .vf-shop-top {
  border-bottom-color: rgba(255, 255, 255, .14);
}

body.dark .vf-shop-top::before {
  background:
    linear-gradient(90deg, rgba(6, 18, 34, .94), rgba(6, 18, 34, .78), rgba(6, 18, 34, .34)),
    radial-gradient(circle at 82% 40%, rgba(55, 160, 255, .18), transparent 22rem);
}

body.dark .vf-shop-top .breadcrumb,
body.dark .vf-shop-top p,
body.dark .vf-shop-toolbar p,
body.dark .shop-mini-cart p {
  color: #b8c9df;
}

body.dark .vf-shop-top h1,
body.dark .shop-sidebar-title,
body.dark .vf-shop-toolbar strong,
body.dark .shop-body h3 {
  color: #f4f9ff;
}

body.dark .shop-sidebar-title,
body.dark .shop-category,
body.dark .shop-subcategory,
body.dark .vf-shop-grid .shop-media,
body.dark .cart-row,
body.dark .cart-voucher,
body.dark .cart-row-actions button,
body.dark .cart-voucher-row input,
body.dark .cart-voucher-remove {
  border-color: rgba(255, 255, 255, .14);
}

body.dark .cart-voucher,
body.dark .cart-row-actions button,
body.dark .cart-voucher-row input,
body.dark .cart-voucher-remove {
  background: rgba(8, 20, 38, .58);
  color: #eef6ff;
}

body.dark .cart-voucher-head span,
body.dark .cart-voucher-message {
  color: #b8c9df;
}

body.dark .member-tier-card,
body.dark .member-benefit-panel,
body.dark .member-level-grid article,
body.dark .member-birthday-code,
body.dark .member-voucher-history div {
  background: rgba(8, 20, 38, .58);
}

body.dark .member-tier-card.is-current,
body.dark .member-birthday-code.is-template {
  background: rgba(30, 115, 190, .14);
}

body.dark .shop-category,
body.dark .shop-subcategory {
  color: #aebfd5;
}

body.dark .shop-category:hover,
body.dark .shop-category.active,
body.dark .shop-subcategory:hover,
body.dark .shop-subcategory.active {
  color: #58a6ff;
}

body.dark .vf-shop-grid .shop-card {
  background: #0f203a;
  border-color: rgba(255, 255, 255, .14);
}

body.dark .vf-shop-grid .shop-media {
  background:
    radial-gradient(circle at 50% 45%, rgba(88, 166, 255, .2), transparent 9rem),
    linear-gradient(180deg, #132642, #0a172b);
}

body.dark .shop-media img {
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, .38));
}

body.dark .shop-body .tag {
  background: rgba(88, 166, 255, .14);
  color: #d8ebff;
}

body.dark .price,
body.dark .shop-body .price {
  color: #58a6ff;
}

body.dark .shop-swatches span {
  border-color: #0f203a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .28);
}

body.dark .vf-part-head {
  border-bottom-color: rgba(255, 255, 255, .14);
}

body.dark .vf-part-breadcrumb strong,
body.dark .vf-part-note strong,
body.dark .part-related-card strong {
  color: #f4f9ff;
}

body.dark .vf-part-cart-pill {
  background: #132642;
  color: #eef6ff;
  box-shadow: 0 18px 32px rgba(0, 0, 0, .32);
}

body.dark .vf-part-main-image,
body.dark .part-thumb,
body.dark .vf-part-order-product img,
body.dark .part-related-card span {
  background:
    radial-gradient(circle at center, rgba(88, 166, 255, .18), transparent 12rem),
    #0a172b;
  border-color: rgba(255, 255, 255, .14);
}

body.dark .vf-part-main-image img,
body.dark .part-thumb img,
body.dark .part-related-card img {
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .36));
}

body.dark .vf-part-thumb-arrow {
  border-color: rgba(139, 167, 204, .35);
  background: rgba(8, 20, 38, .92);
  color: #dcecff;
}

body.dark .vf-part-thumb-arrow:hover {
  border-color: #58a6ff;
  background: #0b4ea2;
  color: #fff;
}

body.dark .vf-part-kicker span,
body.dark .vf-part-labels span,
body.dark .vf-part-note {
  background: rgba(88, 166, 255, .12);
  color: #d8ebff;
}

body.dark .vf-part-note,
body.dark .vf-part-order-product,
body.dark .vf-part-qty,
body.dark .vf-part-total {
  border-color: rgba(255, 255, 255, .14);
}

body.dark .vf-part-price,
body.dark .vf-part-total strong,
body.dark .part-related-card em,
body.dark .part-view-more,
body.dark .shop-detail-link {
  color: #58a6ff;
}

body.dark .vf-part-qty div {
  border-color: rgba(255, 255, 255, .14);
}

body.dark .vf-part-qty button {
  background: #071426;
  color: #edf6ff;
}

body.dark .vf-part-qty strong {
  color: #f4f9ff;
}

body.dark.com-gio-hang .wrap-cart {
  background:
    radial-gradient(circle at 16% 0%, rgba(88, 166, 255, .14), transparent 26rem),
    linear-gradient(180deg, rgba(15, 32, 58, .96), rgba(8, 23, 43, .96));
  border-color: rgba(155, 215, 255, .16);
  box-shadow: 0 26px 58px rgba(0, 0, 0, .32);
}

body.dark.com-gio-hang .cart-page-head,
body.dark.com-gio-hang .title-cart {
  border-color: rgba(255, 255, 255, .13);
}

body.dark.com-gio-hang .cart-page-eyebrow {
  background: rgba(88, 166, 255, .16);
  color: #9bd7ff;
}

body.dark.com-gio-hang .cart-continue-link {
  border-color: rgba(155, 215, 255, .34);
  background: rgba(255, 255, 255, .08);
  color: #eaf4ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

body.dark.com-gio-hang .cart-continue-link:hover {
  border-color: rgba(155, 215, 255, .58);
  background: rgba(88, 166, 255, .16);
  color: #fff;
}

body.dark.com-gio-hang .procart,
body.dark.com-gio-hang .section-cart,
body.dark.com-gio-hang .empty-cart {
  background: linear-gradient(180deg, rgba(17, 39, 68, .95), rgba(12, 27, 48, .95));
  border-color: rgba(255, 255, 255, .13);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .24);
}

body.dark.com-gio-hang .procart-label {
  background: rgba(88, 166, 255, .1);
  color: #a9bbd2;
}

body.dark.com-gio-hang .pic-procart img {
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 50% 45%, rgba(88, 166, 255, .2), transparent 7rem),
    #071426;
}

body.dark.com-gio-hang .name-procart a,
body.dark.com-gio-hang .quantity-counter-procart .quantity-procart,
body.dark.com-gio-hang .empty-cart p {
  color: #f4f9ff;
}

body.dark.com-gio-hang .name-procart a:hover {
  color: #9bd7ff;
}

body.dark.com-gio-hang .cart-metric-label,
body.dark.com-gio-hang .properties-procart p,
body.dark.com-gio-hang .properties-procart strong,
body.dark.com-gio-hang .form-floating label,
body.dark.com-gio-hang .form-floating-cus label {
  color: #a9bbd2;
}

body.dark.com-gio-hang .price-new-cart {
  color: #58a6ff;
}

body.dark.com-gio-hang .price-old-cart {
  color: #73859d;
}

body.dark.com-gio-hang .quantity-counter-procart {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(7, 20, 38, .72);
}

body.dark.com-gio-hang .counter-procart {
  color: #d8ebff;
}

body.dark.com-gio-hang .counter-procart:hover,
body.dark.com-gio-hang .counter-procart:focus {
  color: #9bd7ff;
}

body.dark.com-gio-hang .quantity-counter-procart .quantity-procart {
  background: rgba(255, 255, 255, .06);
}

body.dark.com-gio-hang .money-procart {
  border-color: rgba(255, 255, 255, .13);
}

body.dark.com-gio-hang .total-procart,
body.dark.com-gio-hang .voucher-message-cart {
  background: rgba(8, 20, 38, .64);
}

body.dark.com-gio-hang .total-procart {
  border-top-color: rgba(255, 255, 255, .13);
}

body.dark.com-gio-hang .total-procart p {
  color: #b8c9df;
}

body.dark.com-gio-hang .total-procart p:last-child,
body.dark.com-gio-hang .total-procart .total-price {
  color: #eaf4ff;
}

body.dark.com-gio-hang .money-procart>.total-procart:last-child {
  background: linear-gradient(135deg, rgba(30, 115, 190, .22), rgba(88, 166, 255, .12));
}

body.dark.com-gio-hang .money-procart>.total-procart:last-child p {
  color: #d8ebff;
}

body.dark.com-gio-hang .money-procart>.total-procart:last-child .total-price {
  color: #9bd7ff;
}

body.dark.com-gio-hang .cart-discount-line .total-price,
body.dark.com-gio-hang .voucher-message-cart.text-success {
  color: #5cd693 !important;
}

body.dark.com-gio-hang .voucher-message-cart {
  color: #a9bbd2;
}

body.dark.com-gio-hang .voucher-message-cart.text-danger {
  color: #ff9a9a !important;
}

body.dark.com-gio-hang .form-control,
body.dark.com-gio-hang .form-select,
body.dark.com-gio-hang .select2-selection,
body.dark.com-gio-hang .code-coupon {
  background: rgba(7, 20, 38, .86) !important;
  border-color: rgba(155, 215, 255, .2) !important;
  color: #edf6ff;
}

body.dark.com-gio-hang .form-control::placeholder,
body.dark.com-gio-hang .code-coupon::placeholder {
  color: #879ab2;
}

body.dark.com-gio-hang .form-floating>.form-control::placeholder,
body.dark.com-gio-hang .form-floating-cus>.form-control::placeholder,
body.dark.com-gio-hang textarea.form-control::placeholder {
  color: #879ab2 !important;
  opacity: 1 !important;
}

body.dark.com-gio-hang .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #edf6ff;
}

body.dark.com-gio-hang .payments-label {
  background: rgba(8, 20, 38, .62);
  border-color: rgba(255, 255, 255, .13);
  color: #d8ebff !important;
}

body.dark.com-gio-hang .payments-label:hover {
  background: rgba(88, 166, 255, .12);
}

body.dark.com-gio-hang .payments-cart .form-check-input:checked+.payments-label,
body.dark.com-gio-hang .payments-label.active {
  border-color: rgba(155, 215, 255, .55);
  background: linear-gradient(135deg, rgba(30, 115, 190, .3), rgba(88, 166, 255, .14));
  color: #f4f9ff !important;
}

body.dark.com-gio-hang .payments-marker {
  border-color: rgba(155, 215, 255, .38);
  background: #071426;
  box-shadow: inset 0 0 0 4px #071426;
}

body.dark.com-gio-hang .payments-cart .form-check-input:checked+.payments-label .payments-marker,
body.dark.com-gio-hang .payments-label.active .payments-marker {
  border-color: #9bd7ff;
  background: #58a6ff;
}

body.dark.com-gio-hang .payments-info.active {
  background: rgba(7, 20, 38, .76);
  border-color: rgba(255, 255, 255, .13);
  color: #b8c9df;
}

body.dark.com-gio-hang .del-procart {
  border-color: rgba(255, 140, 140, .42);
  background: rgba(218, 37, 29, .14);
  color: #ffcaca;
}

body.dark.com-gio-hang .del-procart:hover {
  border-color: rgba(255, 174, 174, .68);
  background: rgba(218, 37, 29, .22);
}

body.dark.com-gio-hang .cart-delete-confirm {
  border-color: rgba(255, 140, 140, .34);
  background: rgba(7, 20, 38, .96);
  box-shadow: 0 18px 30px rgba(0, 0, 0, .28);
}

body.dark.com-gio-hang .cart-delete-confirm span {
  color: #ffdede;
}

body.dark.com-gio-hang .cart-delete-cancel {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #edf6ff;
}

body.dark.com-gio-hang .remove-voucher-cart.btn {
  border-color: rgba(155, 215, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: #d8ebff;
}

body.dark.com-gio-hang .apply-voucher-cart.btn,
body.dark.com-gio-hang input[name="thanhtoan"].btn-cart {
  border-color: rgba(155, 215, 255, .48);
  background: linear-gradient(135deg, #1e73be, #58a6ff);
  color: #fff;
  box-shadow: 0 16px 28px rgba(30, 115, 190, .28);
}

body.dark.com-gio-hang .box-dktt {
  background: rgba(88, 166, 255, .08);
  border-color: rgba(155, 215, 255, .2);
  color: #b8c9df;
}

body.dark.com-gio-hang .box-dktt b {
  color: #b8c9df;
}

body.dark.com-gio-hang .box-dktt a {
  color: #9bd7ff;
}

body.dark.com-gio-hang .empty-cart-icon {
  color: #9bd7ff;
}

body.dark .vf-part-order-card #partDetailAddCart {
  border-color: rgba(155, 215, 255, .48);
  background: linear-gradient(135deg, #1e73be, #58a6ff);
  color: #fff;
  box-shadow: 0 18px 32px rgba(30, 115, 190, .32);
}

body.dark .vf-part-order-card #partDetailAddCart:hover {
  border-color: rgba(255, 255, 255, .42);
  background: linear-gradient(135deg, #2b85d8, #73bcff);
  color: #fff;
}

body.dark .vf-part-order-card #partDetailAddCart:disabled,
body.dark .vf-part-order-card #partDetailAddCart:disabled:hover {
  border-color: rgba(155, 215, 255, .38);
  background: linear-gradient(135deg, rgba(30, 115, 190, .78), rgba(88, 166, 255, .66));
  color: #eef7ff;
  opacity: 1;
}

body.dark .vf-part-order-card #partDetailAddCart.is-added {
  background: #0f9f6e;
  border-color: #0f9f6e;
  color: #fff;
}

/* Dark mode refinements for price table page */
body.dark .price-promo {
  background: #071426;
}

body.dark .price-promo-left {
  background: linear-gradient(135deg, #0b2144, #123a7a 48%, #071426 49%);
}

body.dark .price-promo-left small,
body.dark .price-breadcrumb,
body.dark .price-breadcrumb span {
  color: #b8c9df;
}

body.dark .price-promo-right,
body.dark .price-table,
body.dark .price-mobile-card,
body.dark .price-tools {
  background: #0f203a;
  color: #eef6ff;
  border-color: rgba(255, 255, 255, .14);
}

body.dark .price-table th {
  background: #132642;
  color: #eef6ff;
}

body.dark .price-table td,
body.dark .price-tools a {
  border-color: rgba(255, 255, 255, .14);
  color: #eef6ff;
}

body.dark .price-car-cell {
  background: #10233f;
}

body.dark .price-car-cell img {
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .32));
}

body.dark .price-mobile-head h3 {
  color: #f4f9ff;
}

body.dark .price-mobile-head span {
  color: #b8c9df;
}

body.dark .price-newsletter {
  background: #061225;
}

/* Dark mode refinements for article/detail supporting panels */
body.dark .article-related a,
body.dark .article-meta,
body.dark .article-lead,
body.dark .article-content p,
body.dark .article-step-grid span,
body.dark .spec-table td,
body.dark .vf-spec-table td,
body.dark .vf-hero-specs small {
  color: #b8c9df;
}

body.dark .article-related a,
body.dark .article-step-grid div,
body.dark .spec-table td,
body.dark .vf-spec-table td {
  border-color: rgba(255, 255, 255, .14);
}

body.dark .spec-table th,
body.dark .vf-spec-table th {
  background: #132642;
  color: #eef6ff;
}

body.dark .limo-compare-wrap .vf-spec-table td:first-child {
  background: #10233f;
  color: #f4f9ff;
}

body.dark .limo-version-filter label {
  color: #f4f9ff;
}

body.dark .limo-version-filter select {
  border-color: rgba(255, 255, 255, .16);
  background: #10233f;
  color: #f4f9ff;
}

body.dark .limo-filter-compare-wrap .vf-spec-table .is-section td {
  background: #162947;
  color: #f4f9ff;
}

body.dark .limo-filter-compare-wrap .vf-spec-table td:nth-child(2) {
  color: #d8e7f7;
}

body.dark .vf-photo-story,
body.dark .vf-feature-tabs,
body.dark .vf-spec-section,
body.dark .vf-color-section,
body.dark .vf-visual {
  background: #071426;
}

/* Dark mode refinements for forms, calculators and deposits */
body.dark .vf-form-card,
body.dark .vf-form-panel,
body.dark .deposit-preview,
body.dark .modal-card {
  background: #0f203a;
  border-color: rgba(255, 255, 255, .14);
  color: #eef6ff;
}

body.dark .vf-form-visual {
  background:
    radial-gradient(circle at 70% 28%, rgba(88, 166, 255, .22), transparent 22rem),
    linear-gradient(145deg, #071426, #0f56a6);
}

body.dark .field label {
  color: #edf6ff;
}

body.dark .vf-form-group-title,
body.dark .deposit-preview-note strong {
  color: #f4f9ff;
}

body.dark .vf-choice-pill,
body.dark .deposit-preview-note {
  background: rgba(7, 20, 38, .78);
  border-color: rgba(255, 255, 255, .14);
  color: #d7e6ff;
}

body.dark .vf-terms,
body.dark .field-meta,
body.dark .vf-form-note {
  color: #b8c9df;
}

body.dark .field-counter {
  color: #9fb4cc;
}

body.dark .calc-note {
  background: rgba(88, 166, 255, .12);
  color: #c9daf0;
}

body.dark .roll-addon-toggle,
body.dark .quote-summary {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  color: #c9daf0;
}

body.dark .deposit-preview {
  background:
    radial-gradient(circle at center, rgba(88, 166, 255, .18), transparent 16rem),
    #0f203a;
}

body.dark[data-page="deposit"] {
  background: #071426;
  color: #eef6ff;
}

body.dark[data-page="deposit"] .deposit-page,
body.dark[data-page="deposit"] .deposit-shop {
  background:
    radial-gradient(circle at 18% 16%, rgba(88, 166, 255, .16), transparent 24rem),
    linear-gradient(180deg, #061225 0%, #071426 100%);
}

body.dark[data-page="deposit"] .deposit-shop .deposit-preview {
  background:
    radial-gradient(circle at 58% 42%, rgba(88, 166, 255, .18), transparent 22rem),
    #071426;
  color: #eef6ff;
}

body.dark[data-page="deposit"] .deposit-shop .deposit-form-panel {
  background: #0f203a;
  color: #eef6ff;
  box-shadow: -10px 0 38px rgba(0, 0, 0, .32);
}

body.dark[data-page="deposit"] .deposit-logo img {
  filter: brightness(0) invert(1) drop-shadow(0 10px 16px rgba(0, 0, 0, .28));
}

body.dark[data-page="deposit"] .deposit-account,
body.dark[data-page="deposit"] .deposit-model-arrow,
body.dark[data-page="deposit"] .deposit-step h2,
body.dark[data-page="deposit"] .deposit-step h3,
body.dark[data-page="deposit"] .deposit-label,
body.dark[data-page="deposit"] .deposit-option-head,
body.dark[data-page="deposit"] .deposit-program-head,
body.dark[data-page="deposit"] .deposit-note strong,
body.dark[data-page="deposit"] .deposit-showroom-card strong,
body.dark[data-page="deposit"] .deposit-final-card strong {
  color: #f4f9ff;
}

body.dark[data-page="deposit"] .deposit-model-rail button {
  color: #8ea2bc;
}

body.dark[data-page="deposit"] .deposit-model-rail button.active {
  color: #eef6ff;
}

body.dark[data-page="deposit"] .deposit-specs span,
body.dark[data-page="deposit"] .deposit-preview small,
body.dark[data-page="deposit"] .deposit-lead,
body.dark[data-page="deposit"] .deposit-option-head strong,
body.dark[data-page="deposit"] .deposit-swatch-group p,
body.dark[data-page="deposit"] .deposit-radio-row label,
body.dark[data-page="deposit"] .deposit-programs label,
body.dark[data-page="deposit"] .deposit-programs label small,
body.dark[data-page="deposit"] .deposit-note,
body.dark[data-page="deposit"] .deposit-showroom-card,
body.dark[data-page="deposit"] .deposit-voucher-message,
body.dark[data-page="deposit"] .deposit-final-card span,
body.dark[data-page="deposit"] .deposit-terms,
body.dark[data-page="deposit"] .deposit-total-bar span,
body.dark[data-page="deposit"] .deposit-total-bar small {
  color: #b8c9df;
}

body.dark[data-page="deposit"] .deposit-specs strong,
body.dark[data-page="deposit"] .deposit-total-bar strong {
  color: #f4f9ff;
}

body.dark[data-page="deposit"] .deposit-stepper button {
  border-bottom-color: rgba(255, 255, 255, .14);
  color: #8ea2bc;
}

body.dark[data-page="deposit"] .deposit-stepper i {
  background: rgba(255, 255, 255, .18);
  color: #d7e6ff;
}

body.dark[data-page="deposit"] .deposit-stepper button.active {
  border-color: #58a6ff;
  color: #9bd7ff;
}

body.dark[data-page="deposit"] .deposit-stepper button.active i,
body.dark[data-page="deposit"] .deposit-stepper button.done i {
  background: #2f7df6;
  color: #fff;
}

body.dark[data-page="deposit"] .deposit-field input,
body.dark[data-page="deposit"] .deposit-field select,
body.dark[data-page="deposit"] .deposit-field textarea,
body.dark[data-page="deposit"] .deposit-voucher input {
  background: #071426;
  border-color: rgba(255, 255, 255, .16);
  color: #eef6ff;
}

body.dark[data-page="deposit"] .deposit-field input::placeholder,
body.dark[data-page="deposit"] .deposit-field textarea::placeholder,
body.dark[data-page="deposit"] .deposit-voucher input::placeholder {
  color: #7f94b0;
}

body.dark[data-page="deposit"] .deposit-field select option {
  background: #071426;
  color: #eef6ff;
}

body.dark[data-page="deposit"] .deposit-field i {
  color: #7f94b0;
}

body.dark[data-page="deposit"] .deposit-swatches button {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}

body.dark[data-page="deposit"] .deposit-swatches button::before {
  border-color: rgba(255, 255, 255, .18);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .16);
}

body.dark[data-page="deposit"] .deposit-swatches button.active {
  border-color: #58a6ff;
  box-shadow: 0 0 0 2px rgba(88, 166, 255, .28);
}

body.dark[data-page="deposit"] .deposit-programs label,
body.dark[data-page="deposit"] .deposit-note,
body.dark[data-page="deposit"] .deposit-showroom-card,
body.dark[data-page="deposit"] .deposit-package label,
body.dark[data-page="deposit"] .deposit-gateways label,
body.dark[data-page="deposit"] .deposit-final-card {
  background: rgba(7, 20, 38, .72);
  border-color: rgba(255, 255, 255, .14);
}

body.dark[data-page="deposit"] .deposit-programs input:checked+span,
body.dark[data-page="deposit"] .deposit-package strong,
body.dark[data-page="deposit"] .deposit-showroom-card a,
body.dark[data-page="deposit"] .deposit-estimate-links span {
  color: #9bd7ff;
}

body.dark[data-page="deposit"] .deposit-final-card div,
body.dark[data-page="deposit"] .deposit-estimate-links a {
  border-color: rgba(255, 255, 255, .12);
}

body.dark[data-page="deposit"] .deposit-estimate-links a {
  color: #edf6ff;
}

body.dark[data-page="deposit"] .deposit-program-head label i {
  background: rgba(255, 255, 255, .18);
}

body.dark[data-page="deposit"] .deposit-program-head input:checked+i {
  background: #2f7df6;
}

body.dark[data-page="deposit"] .deposit-total-bar {
  background: rgba(6, 18, 37, .96);
  border-top-color: rgba(255, 255, 255, .14);
  box-shadow: 0 -18px 34px rgba(0, 0, 0, .26);
}

body.dark[data-page="deposit"] .deposit-total-bar button[data-deposit-prev] {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(155, 215, 255, .44);
  color: #9bd7ff;
}

body.dark[data-page="deposit"] .deposit-submit-result {
  background: rgba(22, 160, 93, .14);
  border-color: rgba(92, 214, 147, .36);
  color: #dffbea;
}

body.dark[data-page="deposit"] .deposit-submit-result p {
  color: #b8c9df;
}

body.dark[data-page="deposit"] .deposit-submit-result.is-error {
  background: rgba(217, 45, 32, .14);
  border-color: rgba(255, 140, 140, .38);
  color: #ffd4cf;
}

body.dark .deposit-summary .result-line,
body.dark .cart-drawer .result-line {
  color: #edf6ff !important;
  border-color: rgba(255, 255, 255, .14);
}

body.dark .result-box {
  background: linear-gradient(135deg, #061225, #0f56a6);
}

body.dark .loan-result-panel {
  background: #0f203a;
  border-color: rgba(255, 255, 255, .14);
  color: #eef6ff;
}

body.dark .loan-result-panel h2,
body.dark .loan-table-toolbar h3 {
  color: #f4f9ff;
}

body.dark .loan-summary-card,
body.dark .loan-table-wrap,
body.dark .loan-schedule-table {
  background: rgba(7, 20, 38, .72);
  border-color: rgba(255, 255, 255, .14);
}

body.dark .loan-summary-card span,
body.dark .loan-table-toolbar p {
  color: #b8c9df;
}

body.dark .loan-summary-card strong {
  color: #9bd7ff;
}

body.dark .loan-download-btn {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(155, 215, 255, .34);
  color: #9bd7ff;
}

body.dark .loan-schedule-table td {
  background: #102440;
  border-color: rgba(255, 255, 255, .1);
  color: #edf6ff;
}

body.dark .loan-schedule-table td:first-child {
  color: #c9daf0;
}

body.dark .loan-schedule-table tbody tr:nth-child(odd) td {
  background: #0b1b31;
}

/* Dark mode refinements for floating cart panel */
body.dark .vf-cart-panel-backdrop {
  background: rgba(2, 8, 20, .72);
}

body.dark .vf-cart-panel {
  background:
    radial-gradient(circle at 15% 14%, rgba(88, 166, 255, .2), transparent 17rem),
    linear-gradient(170deg, #071427, #0b1f39 64%, #071426);
  border-left-color: rgba(155, 215, 255, .22);
  box-shadow: -24px 0 48px rgba(0, 0, 0, .4);
}

body.dark .vf-cart-panel-head span,
body.dark .vf-cart-panel-summary>div,
body.dark .vf-cart-panel-info small {
  color: #b8c9df;
}

body.dark .vf-cart-panel-head strong,
body.dark .vf-cart-panel-info strong,
body.dark .vf-cart-panel-summary strong,
body.dark .vf-cart-panel-qty em {
  color: #f4f9ff;
}

body.dark .vf-cart-panel-item,
body.dark .vf-cart-panel-summary {
  border-color: rgba(255, 255, 255, .14);
}

body.dark .vf-cart-panel-thumb {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
}

body.dark .vf-cart-panel-info span,
body.dark .vf-cart-panel-total strong {
  color: #9bd7ff;
}

body.dark .vf-cart-panel-qty button {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .26);
  color: #eef6ff;
}

body.dark .vf-cart-panel-qty button:hover {
  background: rgba(88, 166, 255, .18);
  border-color: rgba(155, 215, 255, .55);
  color: #fff;
}

body.dark .vf-cart-panel-qty .vf-cart-panel-remove {
  background: rgba(218, 37, 29, .14);
  border-color: rgba(255, 140, 140, .48);
  color: #ffcaca;
}

body.dark .vf-cart-panel-qty .vf-cart-panel-remove:hover {
  background: rgba(218, 37, 29, .24);
  border-color: rgba(255, 174, 174, .7);
  color: #ffe6e6;
}

body.dark .vf-cart-panel-confirm {
  border-color: rgba(255, 128, 128, .34);
  background: rgba(123, 29, 29, .24);
  color: #ffdede;
}

body.dark .vf-cart-panel-confirm button {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  color: #edf6ff;
}

body.dark .vf-cart-panel-confirm button:first-of-type {
  border-color: rgba(255, 140, 140, .8);
  background: rgba(218, 37, 29, .82);
  color: #fff;
}

body.dark .vf-cart-panel-close {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: #f4f9ff;
}

body.dark .vf-cart-panel-actions .btn.ghost {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .24);
  color: #e9f4ff;
}

/* Dark mode refinements for rolling estimate page */
body.dark[data-page="calc"] .rolling-config-panel,
body.dark[data-page="calc"] .rolling-estimate-panel {
  background: rgba(15, 32, 58, .94);
  border-color: rgba(255, 255, 255, .14);
  color: #edf6ff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
}

body.dark[data-page="calc"] .rolling-config-panel h2,
body.dark[data-page="calc"] .rolling-estimate-panel h2,
body.dark[data-page="calc"] .rolling-detail-head div,
body.dark[data-page="calc"] .rolling-estimate-panel .result-line,
body.dark[data-page="calc"] .rolling-estimate-panel .result-line strong {
  color: #f4f9ff;
}

body.dark[data-page="calc"] .rolling-config-panel .field label,
body.dark[data-page="calc"] .calc-note {
  color: #c9daf0;
}

body.dark[data-page="calc"] .rolling-config-panel .field select {
  background: rgba(7, 20, 38, .88);
  border-color: rgba(255, 255, 255, .16);
  color: #edf6ff;
}

body.dark[data-page="calc"] .rolling-config-panel .field select option {
  background: #102440;
  color: #edf6ff;
}

body.dark[data-page="calc"] .rolling-swatch {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

body.dark[data-page="calc"] .rolling-swatch span {
  border-color: rgba(255, 255, 255, .2);
}

body.dark[data-page="calc"] .rolling-arrow {
  background: rgba(88, 166, 255, .86);
}

body.dark[data-page="calc"] .rolling-detail-head {
  border-bottom-color: rgba(255, 255, 255, .14);
}

body.dark[data-page="calc"] .rolling-estimate-panel .result-line {
  border-bottom-color: rgba(255, 255, 255, .12);
}

body.dark[data-page="calc"] .rolling-estimate-panel .result-line.is-group {
  background: rgba(255, 255, 255, .08);
}

body.dark[data-page="calc"] .rolling-estimate-panel .result-line.is-total {
  background: rgba(88, 166, 255, .16);
}

body.dark[data-page="calc"] .rolling-estimate-panel .result-line.is-total strong {
  color: #9bd7ff;
}

body.dark[data-page="calc"] .rolling-actions .vf-shop-secondary {
  border-color: rgba(155, 215, 255, .5);
  background: rgba(255, 255, 255, .08);
  color: #dcecff;
}

body.dark[data-page="calc"] .rolling-actions .vf-shop-secondary:hover {
  background: rgba(88, 166, 255, .18);
  border-color: rgba(155, 215, 255, .72);
}

/* Dark mode refinements for home events and promotions */
body.dark .home-events {
  background:
    linear-gradient(180deg, #071426, #071426);
}

body.dark .home-events .home-container {
  background:
    radial-gradient(circle at 18% 22%, rgba(88, 166, 255, .16), transparent 24rem),
    linear-gradient(160deg, #08182d, #071426 62%, #061225);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 30px 70px rgba(0, 0, 0, .2);
}

body.dark .home-events h2,
body.dark .home-events .home-section-head span,
body.dark .home-event-feature h3,
body.dark .home-event-list a {
  color: #f4f9ff;
}

body.dark .home-events .home-section-head a,
body.dark .home-event-feature a,
body.dark .home-event-list i {
  color: #58a6ff;
}

body.dark .home-event-feature p {
  color: #b8c9df;
}

body.dark .home-event-feature {
  border-radius: 22px;
  padding: 18px;
  background: rgba(15, 32, 58, .72);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .2);
}

body.dark .home-event-feature img {
  filter: brightness(.82) saturate(1.04);
}

body.dark .home-event-list a {
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(15, 32, 58, .62);
  border: 1px solid rgba(255, 255, 255, .1);
}

body.dark .home-event-list a:hover {
  color: #8ec8ff;
  background: rgba(18, 47, 82, .78);
  border-color: rgba(88, 166, 255, .28);
}

body.dark .home-events .home-pills button:not(.active) {
  background: rgba(15, 32, 58, .88);
  border-color: rgba(255, 255, 255, .14);
  color: #c8d8ec;
}

/* Final dark-mode contrast guard for selected product filters.
   Kept at the end because the global dark text rules also target span/strong. */
body.dark .cell-filter-pill.filter-main.has-active>span:not(.cell-filter-count),
body.dark .cell-filter-pill.filter-main[aria-expanded="true"]>span:not(.cell-filter-count),
body.dark .cell-filter-pill.has-active>span,
body.dark .cell-filter-pill[aria-expanded="true"]>span {
  color: #ff6476 !important;
}

body.dark .cell-active-filters .cell-active-filter {
  background: rgba(255, 48, 72, .1) !important;
  border-color: rgba(255, 92, 112, .72) !important;
  color: #ff6476 !important;
}

body.dark .cell-active-filters .cell-active-filter>span,
body.dark .cell-active-filters .cell-active-filter>span strong {
  color: #ff6476 !important;
}

body.dark .cell-active-filters .cell-active-filter i {
  background: #ff4b61 !important;
  color: #fff !important;
}

/* Product detail cards need explicit dark styling because mobile rules add light panels. */
body.dark .limo-metrics>div,
body.dark .limo-side-specs>div,
body.dark .limo-version-grid article {
  background: rgba(15, 32, 58, .94) !important;
  border-color: rgba(255, 255, 255, .14) !important;
  color: #eef6ff !important;
  padding: 10px;
}

body.dark .limo-metrics strong,
body.dark .limo-side-specs strong,
body.dark .limo-version-grid h3,
body.dark .limo-version-grid strong {
  color: #f4f9ff !important;
}

body.dark .limo-metrics span,
body.dark .limo-side-specs span,
body.dark .limo-version-grid p {
  color: #b8c9df !important;
}

body.dark .limo-version-grid span,
body.dark .limo-version-grid a {
  color: #8ec8ff !important;
}

/* Loan page final guard: keep the first viewport identical even when CMS page cache restores the old hero block. */
body[data-page="loan"] .vf-page-hero,
body[data-page="loan"] .vf-shop-loan-head {
  display: none !important;
}

body[data-page="loan"] .vf-shop-loan-section {
  position: relative;
  padding-top: 178px;
}

body[data-page="loan"] .vf-shop-loan-section::before {
  content: "DÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± toÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡n chi phÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­ trÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£ gÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³p";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  color: #1f1f1f;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

body[data-page="loan"] .vf-shop-loan-section::after {
  content: "CÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡c giÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ trÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ dÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± toÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡n nÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â y chÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° mang tÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­nh chÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥t tham khÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£o. ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ nhÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­n thÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ng tin cÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ thÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ vÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  chÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­nh xÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡c,\A QuÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ khÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ch vui lÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ng liÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªn hÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ vÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºi showroom hoÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·c ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡i lÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ gÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§n nhÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥t.";
  position: absolute;
  top: 97px;
  left: 50%;
  width: min(720px, calc(100vw - 32px));
  transform: translateX(-50%);
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  white-space: pre-line;
}

@media (max-width: 720px) {
  body[data-page="loan"] .vf-shop-loan-section {
    padding-top: 154px;
  }

  body[data-page="loan"] .vf-shop-loan-section::before {
    top: 8px;
    font-size: 38px;
    line-height: 1.18;
  }

  body[data-page="loan"] .vf-shop-loan-section::after {
    top: 64px;
    font-size: 14px;
    white-space: normal;
  }
}

/* Loan page absolute last override: show the real middle title and remove cached pseudo heading. */
body[data-page="loan"] .vf-shop-loan-head {
  display: block !important;
  padding: 6px 0 0 !important;
  background: #fff !important;
  color: #1f1f1f !important;
  text-align: center;
}

body[data-page="loan"] .vf-shop-loan-head h1 {
  margin: 0;
  color: #1f1f1f !important;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
}

body[data-page="loan"] .vf-shop-loan-head p {
  margin: 21px auto 0;
  max-width: 720px;
  color: #1f1f1f !important;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

body[data-page="loan"] .vf-shop-loan-section {
  position: static !important;
  padding: 41px 0 48px !important;
  background: #fff !important;
}

body[data-page="loan"] .vf-shop-loan-section::before,
body[data-page="loan"] .vf-shop-loan-section::after {
  content: none !important;
  display: none !important;
}

body[data-page="loan"] .vf-shop-rate,
body.dark[data-page="loan"] .vf-shop-rate {
  background: #fff !important;
}

body[data-page="loan"] .vf-shop-rate input,
body.dark[data-page="loan"] .vf-shop-rate input {
  background: transparent !important;
  color: #2a2a2a !important;
}

body[data-page="loan"] .vf-shop-rate span,
body.dark[data-page="loan"] .vf-shop-rate span {
  color: #2a2a2a !important;
}

@media (max-width: 720px) {
  body[data-page="loan"] .vf-shop-loan-head {
    padding-top: 8px !important;
  }

  body[data-page="loan"] .vf-shop-loan-head h1 {
    font-size: 38px;
    line-height: 1.18;
  }

  body[data-page="loan"] .vf-shop-loan-head p {
    font-size: 14px;
  }

  body[data-page="loan"] .vf-shop-loan-head p br {
    display: none;
  }

  body[data-page="loan"] .vf-shop-loan-section {
    padding-top: 30px !important;
  }
}

/* Site header: one chrome and one active state across all routes. */
body.page .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, .96);
  border-bottom: 1px solid rgba(10, 59, 120, .08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.dark.page .site-header {
  background: rgba(7, 20, 38, .94);
  border-bottom-color: rgba(255, 255, 255, .12);
}

body.page .site-header .nav-wrap {
  width: min(1290px, calc(100vw - 140px));
  min-height: 82px;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

body.page .site-header .brand {
  flex: 0 0 auto;
}

body.page .site-header .brand img {
  width: 186px;
}

body.page .site-header .nav-menu {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  min-width: 0;
  margin-left: 30px;
}

body.page .site-header .nav-menu>a,
body.page .site-header .nav-menu>button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 28px 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
}

body.page .site-header .nav-menu>a:hover,
body.page .site-header .nav-menu>button:hover,
body.page .site-header .nav-menu>a.active,
body.page .site-header .nav-menu>button.active,
body.page .site-header .nav-menu>[aria-current="page"] {
  color: var(--blue-700);
  background: transparent;
  font-weight: 650;
}

body.page .site-header .nav-menu>a.active::after,
body.page .site-header .nav-menu>button.active::after,
body.page .site-header .nav-menu>[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
}

body.dark.page .site-header .nav-menu>a,
body.dark.page .site-header .nav-menu>button {
  color: #e9f4ff;
}

body.dark.page .site-header .nav-menu>a:hover,
body.dark.page .site-header .nav-menu>button:hover,
body.dark.page .site-header .nav-menu>a.active,
body.dark.page .site-header .nav-menu>button.active,
body.dark.page .site-header .nav-menu>[aria-current="page"] {
  color: #9bd7ff;
  background: transparent;
}

body.page .site-header .nav-actions {
  flex: 0 0 auto;
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

body.page .site-header .theme-only,
body.page .site-header .member-account-link {
  display: inline-grid !important;
  place-items: center;
}

body.page .site-header .member-account-link.active,
body.page .site-header .member-account-link[aria-current="page"] {
  color: var(--blue-700);
  border-color: rgba(15, 86, 166, .38);
  background: #eef7ff;
  box-shadow: 0 0 0 3px rgba(35, 183, 255, .14);
}

body.dark.page .site-header .member-account-link.active,
body.dark.page .site-header .member-account-link[aria-current="page"] {
  color: #9bd7ff;
  border-color: rgba(155, 215, 255, .42);
  background: rgba(155, 215, 255, .11);
}

body.page .site-header .header-test-drive {
  width: auto;
  height: auto;
  min-width: 188px;
  min-height: 45px;
  display: inline-flex !important;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  box-shadow: 0 14px 28px rgba(15, 86, 166, .25);
  font-size: 15px;
  font-weight: 650;
  line-height: normal;
  text-transform: none;
}

body.page .site-header .header-test-drive.active {
  box-shadow: 0 0 0 3px rgba(35, 183, 255, .16), 0 14px 28px rgba(15, 86, 166, .25);
}

body.page .site-header .header-test-drive i {
  display: inline-block;
}

body.page .site-header .menu-toggle {
  display: none !important;
}

@media (max-width: 1024px) {
  body.page .site-header .nav-menu {
    position: fixed;
    inset: 110px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 0;
    margin-left: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.page .site-header .nav-menu.open {
    display: flex;
  }

  body.page .site-header .nav-menu>a,
  body.page .site-header .nav-menu>button {
    width: 100%;
    padding: 14px;
    line-height: normal;
  }

  body.page .site-header .nav-menu>a.active::after,
  body.page .site-header .nav-menu>button.active::after,
  body.page .site-header .nav-menu>[aria-current="page"]::after {
    left: 14px;
    right: auto;
    bottom: 8px;
    width: 34px;
  }

  body.page .site-header .header-test-drive {
    display: none !important;
  }

  body.page .site-header .menu-toggle {
    display: inline-grid !important;
    place-items: center;
  }
}

@media (max-width: 720px) {
  body.page .site-header .nav-wrap {
    width: min(1290px, calc(100vw - 32px));
  }

  body.page .site-header .brand img {
    width: 128px;
  }
}

/* Loan calculator final UI: scoped to the middle content; header and footer keep the site layout. */
body[data-page="loan"] .vf-page-hero {
  display: none !important;
}

body[data-page="loan"] .vf-shop-loan-head {
  display: block !important;
  padding: 6px 0 0 !important;
  background: #fff !important;
  color: #1f1f1f !important;
  text-align: center;
}

body[data-page="loan"] .vf-shop-loan-head h1 {
  margin: 0;
  color: #1f1f1f !important;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
}

body[data-page="loan"] .vf-shop-loan-head p {
  margin: 21px auto 0;
  max-width: 720px;
  color: #1f1f1f !important;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

body[data-page="loan"] .vf-shop-loan-section {
  position: static !important;
  padding: 41px 0 48px !important;
  background: #fff !important;
}

body[data-page="loan"] .vf-shop-loan-section::before,
body[data-page="loan"] .vf-shop-loan-section::after {
  content: none !important;
  display: none !important;
}

body[data-page="loan"] .vf-shop-loan-page,
body.dark[data-page="loan"] .vf-shop-loan-page {
  background: #fff !important;
  color: #1f1f1f !important;
}

body[data-page="loan"] .vf-shop-loan-form,
body.dark[data-page="loan"] .vf-shop-loan-form {
  background: #f7f8fa !important;
  color: #242629 !important;
}

body[data-page="loan"] .vf-shop-field label,
body.dark[data-page="loan"] .vf-shop-field label {
  color: #242629 !important;
}

body[data-page="loan"] .vf-shop-field select,
body[data-page="loan"] .vf-shop-rate,
body.dark[data-page="loan"] .vf-shop-field select,
body.dark[data-page="loan"] .vf-shop-rate {
  min-height: 42px;
  border: 1px solid #d4dbe1 !important;
  border-radius: 2px !important;
  background: #fff !important;
  color: #222 !important;
  box-shadow: none !important;
}

body[data-page="loan"] .vf-shop-field .select2-container {
  width: 100% !important;
}

body[data-page="loan"] .vf-shop-field .select2-container--default .select2-selection--single,
body.dark[data-page="loan"] .vf-shop-field .select2-container--default .select2-selection--single {
  height: 42px !important;
  min-height: 42px !important;
  border: 1px solid #d4dbe1 !important;
  border-radius: 2px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body[data-page="loan"] .vf-shop-field .select2-container--default .select2-selection--single .select2-selection__rendered,
body.dark[data-page="loan"] .vf-shop-field .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 40px !important;
  padding: 0 38px 0 13px !important;
  color: #222 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 40px !important;
}

body[data-page="loan"] .vf-shop-field .select2-container--default .select2-selection--single .select2-selection__placeholder,
body.dark[data-page="loan"] .vf-shop-field .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #8a8f94 !important;
}

body[data-page="loan"] .vf-shop-field .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 36px !important;
  height: 40px !important;
  right: 4px !important;
}

body[data-page="loan"] .select2-dropdown,
body.dark[data-page="loan"] .select2-dropdown {
  border-color: #d4dbe1 !important;
  border-radius: 2px !important;
  background: #fff !important;
  color: #222 !important;
}

body[data-page="loan"] .select2-container--default .select2-search--dropdown .select2-search__field,
body.dark[data-page="loan"] .select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #d4dbe1 !important;
  background: #fff !important;
  color: #222 !important;
}

body[data-page="loan"] .select2-container--default .select2-results__option,
body.dark[data-page="loan"] .select2-container--default .select2-results__option {
  background: #fff;
  color: #222 !important;
}

body[data-page="loan"] .select2-container--default .select2-results__option--highlighted[aria-selected],
body.dark[data-page="loan"] .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #1464f6 !important;
  color: #fff !important;
}

body[data-page="loan"] .vf-shop-rate input,
body.dark[data-page="loan"] .vf-shop-rate input,
body[data-page="loan"] .vf-shop-rate span,
body.dark[data-page="loan"] .vf-shop-rate span {
  color: #2a2a2a !important;
}

body[data-page="loan"] .vf-shop-choice-row button,
body.dark[data-page="loan"] .vf-shop-choice-row button {
  border-color: #d4dbe1 !important;
  background: #fff !important;
  color: #202124 !important;
}

body[data-page="loan"] .vf-shop-choice-row button:hover,
body[data-page="loan"] .vf-shop-choice-row button.active,
body.dark[data-page="loan"] .vf-shop-choice-row button:hover,
body.dark[data-page="loan"] .vf-shop-choice-row button.active {
  border-color: #1464f6 !important;
  color: #1464f6 !important;
}

@media (max-width: 720px) {
  body[data-page="loan"] .vf-shop-loan-head {
    padding-top: 8px !important;
  }

  body[data-page="loan"] .vf-shop-loan-head h1 {
    font-size: 38px;
    line-height: 1.18;
  }

  body[data-page="loan"] .vf-shop-loan-head p {
    font-size: 14px;
  }

  body[data-page="loan"] .vf-shop-loan-head p br {
    display: none;
  }

  body[data-page="loan"] .vf-shop-loan-section {
    padding-top: 30px !important;
  }
}

/* Keep the site chrome original on the loan page; only the calculator body is customized. */
body[data-page="loan"] .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, .96);
  border-bottom: 1px solid rgba(10, 59, 120, .08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.dark[data-page="loan"] .site-header {
  background: rgba(7, 20, 38, .92);
  border-bottom-color: rgba(255, 255, 255, .1);
}

body[data-page="loan"] .nav-wrap {
  width: min(1290px, calc(100vw - 140px));
  min-height: 82px;
  gap: 18px;
  max-width: none;
}

body[data-page="loan"] .brand img {
  width: 186px;
}

body[data-page="loan"] .nav-menu {
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 4px;
}

body[data-page="loan"] .nav-menu>a,
body[data-page="loan"] .nav-menu>button {
  padding: 28px 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: normal;
  text-transform: none;
}

body[data-page="loan"] .nav-actions {
  flex: 0 0 auto;
  gap: 10px;
}

body[data-page="loan"] .theme-only,
body[data-page="loan"] .member-account-link {
  display: inline-grid !important;
}

body[data-page="loan"] .header-test-drive {
  width: auto;
  height: auto;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 86, 166, .25);
  font-size: inherit;
  text-transform: none;
}

body[data-page="loan"] .header-test-drive i {
  display: inline-block;
}

body[data-page="loan"] .menu-toggle {
  display: none !important;
}

body[data-page="loan"] .mega-menu {
  display: block !important;
}

body[data-page="loan"] .floating-contact {
  display: grid !important;
}

@media (max-width: 1024px) {
  body[data-page="loan"] .nav-menu {
    position: fixed;
    inset: 110px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body[data-page="loan"] .nav-menu.open {
    display: flex;
  }

  body[data-page="loan"] .nav-menu>a,
  body[data-page="loan"] .nav-menu>button {
    padding: 14px;
    text-align: left;
  }

  body[data-page="loan"] .header-test-drive {
    display: none;
  }

  body[data-page="loan"] .menu-toggle {
    display: inline-grid !important;
    place-items: center;
  }
}

@media (max-width: 720px) {
  body[data-page="loan"] .brand img {
    width: 128px;
  }

  body[data-page="loan"] .nav-wrap {
    width: min(1290px, calc(100vw - 32px));
  }
}

/* Keep the site chrome original on the loan page; only the calculator body is customized. */
body[data-page="loan"] .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, .96);
  border-bottom: 1px solid rgba(10, 59, 120, .08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.dark[data-page="loan"] .site-header {
  background: rgba(7, 20, 38, .92);
  border-bottom-color: rgba(255, 255, 255, .1);
}

body[data-page="loan"] .nav-wrap {
  width: min(1290px, calc(100vw - 140px));
  min-height: 82px;
  gap: 18px;
  max-width: none;
}

body[data-page="loan"] .brand {
  flex: 0 0 auto;
}

body[data-page="loan"] .brand img {
  width: 186px;
}

body[data-page="loan"] .nav-menu {
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 4px;
}

body[data-page="loan"] .nav-menu>a,
body[data-page="loan"] .nav-menu>button {
  padding: 28px 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: normal;
  text-transform: none;
}

body[data-page="loan"] .nav-actions {
  flex: 0 0 auto;
  gap: 10px;
}

body[data-page="loan"] .theme-only,
body[data-page="loan"] .member-account-link {
  display: inline-grid !important;
}

body[data-page="loan"] .header-test-drive {
  width: auto;
  height: auto;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 86, 166, .25);
  font-size: inherit;
  text-transform: none;
}

body[data-page="loan"] .header-test-drive i {
  display: inline-block;
}

body[data-page="loan"] .menu-toggle {
  display: none !important;
}

body[data-page="loan"] .mega-menu {
  display: block !important;
}

body[data-page="loan"] .floating-contact {
  display: grid !important;
}

@media (max-width: 1024px) {
  body[data-page="loan"] .nav-menu {
    position: fixed;
    inset: 110px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body[data-page="loan"] .nav-menu.open {
    display: flex;
  }

  body[data-page="loan"] .nav-menu>a,
  body[data-page="loan"] .nav-menu>button {
    padding: 14px;
    text-align: left;
  }

  body[data-page="loan"] .header-test-drive {
    display: none;
  }

  body[data-page="loan"] .menu-toggle {
    display: inline-grid !important;
    place-items: center;
  }
}

@media (max-width: 720px) {
  body[data-page="loan"] .brand img {
    width: 128px;
  }

  body[data-page="loan"] .nav-wrap {
    width: min(1290px, calc(100vw - 32px));
  }
}

/* VinFast Shop loan calculator reference layout. */
body[data-page="loan"] {
  background: #fff;
  color: #1f1f1f;
}

body[data-page="loan"] .site-header {
  background: #fff;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="loan"] .nav-wrap {
  width: calc(100vw - 96px);
  max-width: none;
  min-height: 84px;
  gap: 28px;
}

body[data-page="loan"] .brand {
  flex: 0 0 auto;
}

body[data-page="loan"] .brand img {
  width: 112px;
}

body[data-page="loan"] .nav-menu {
  flex: 1 1 auto;
  justify-content: flex-start;
  gap: 26px;
  min-width: 0;
}

body[data-page="loan"] .nav-menu>a,
body[data-page="loan"] .nav-menu>button {
  padding: 0;
  color: #2e3033;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 84px;
}

body[data-page="loan"] .nav-actions {
  flex: 0 0 auto;
  gap: 28px;
}

body[data-page="loan"] .theme-only,
body[data-page="loan"] .member-account-link {
  display: none !important;
}

body[data-page="loan"] .header-test-drive {
  width: 156px;
  height: 48px;
  padding: 0;
  border-radius: 2px;
  background: #1464f6;
  box-shadow: none;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

body[data-page="loan"] .header-test-drive i {
  display: none;
}

body[data-page="loan"] .menu-toggle {
  display: inline-grid;
  width: 28px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #202124;
  font-size: 24px;
  flex: 0 0 28px;
}

body[data-page="loan"] .mega-menu,
body[data-page="loan"] .vf-page-hero,
body[data-page="loan"] .floating-contact {
  display: none !important;
}

.vf-shop-loan-page {
  background: #fff;
}

.vf-shop-loan-page .container,
.vf-shop-reference-footer .container {
  width: min(1380px, calc(100vw - 52px));
}

.vf-shop-loan-head {
  padding: 6px 0 0;
  text-align: center;
  background: #fff;
}

.vf-shop-loan-head h1 {
  margin: 0;
  color: #1f1f1f;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
}

.vf-shop-loan-head p {
  margin: 21px auto 0;
  max-width: 720px;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.vf-shop-loan-section {
  padding: 41px 0 48px;
  background: #fff;
}

.vf-shop-loan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 578px;
  gap: 90px;
  align-items: start;
}

.vf-shop-loan-brand {
  min-height: 624px;
  display: grid;
  align-items: start;
  justify-items: center;
  padding-top: 38px;
}

.vf-shop-loan-brand img {
  width: 382px;
  max-width: 100%;
}

.vf-shop-loan-form {
  width: 100%;
  min-height: 624px;
  padding: 23px 20px;
  background: #f7f8fa;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.vf-shop-field {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.vf-shop-field label {
  color: #242629;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 650;
}

.vf-shop-field select,
.vf-shop-rate {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d4dbe1;
  border-radius: 2px;
  background-color: #fff;
  color: #222;
}

.vf-shop-field select {
  appearance: auto;
  padding: 0 13px;
  outline: 0;
  font-size: 15px;
  font-weight: 400;
}

.vf-shop-field select:invalid,
.vf-shop-field select option[value=""] {
  color: #8a8f94;
}

.vf-shop-choice-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 4px;
}

.vf-shop-choice-row button {
  min-width: 0;
  height: 38px;
  border: 1px solid #d4dbe1;
  border-radius: 3px;
  background: #fff;
  color: #202124;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.vf-shop-choice-row button:hover,
.vf-shop-choice-row button.active {
  border-color: #1464f6;
  color: #1464f6;
}

.vf-shop-rate {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 26px 28px;
  align-items: center;
  padding: 0 13px 0 14px;
}

.vf-shop-rate button {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 2px;
  background: #d7e0e3;
  color: #5d686d;
  display: inline-grid;
  place-items: center;
  justify-self: start;
  padding: 0;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  font-weight: 650;
}

.vf-shop-rate button:last-child {
  justify-self: end;
}

.vf-shop-rate input {
  width: 100%;
  height: 40px;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  text-align: center;
  outline: 0;
  font-size: 16px;
  font-weight: 500;
  appearance: textfield;
}

.vf-shop-rate input::-webkit-outer-spin-button,
.vf-shop-rate input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.vf-shop-rate span {
  color: #2a2a2a;
  font-size: 16px;
  text-align: center;
}

.vf-shop-primary {
  width: 280px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  border: 0;
  border-radius: 2px;
  background: #999;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.vf-shop-primary:hover {
  background: #7f7f7f;
}

.vf-loan-schedule-modal {
  z-index: 10020;
  place-items: start center;
  padding: 48px 18px;
  background: rgba(0, 0, 0, .48);
}

body[data-page="loan"] #leadModal {
  z-index: 10040;
}

.vf-loan-schedule-card {
  width: min(1160px, calc(100vw - 36px));
  max-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  color: #1f1f1f;
  border-radius: 0;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .2);
}

.vf-loan-schedule-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 14px;
}

.vf-loan-schedule-head h3 {
  margin: 0;
  color: #222;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: 0;
}

.vf-loan-schedule-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.vf-loan-download-link {
  min-height: 42px;
  border: 1px solid #1764e8;
  border-radius: 2px;
  background: #fff;
  color: #1764e8;
  cursor: pointer;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.vf-loan-download-link:hover {
  background: #f2f7ff;
}

.vf-loan-close {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.vf-loan-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
  padding: 0 24px 12px;
}

.vf-loan-summary:empty {
  display: none;
}

.vf-loan-summary span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe4ef;
  border-radius: 2px;
  background: #f7f8fa;
  color: #344054;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 650;
}

.vf-loan-schedule-card #loanResult {
  min-height: 0;
  padding: 0 24px 24px;
  overflow: hidden;
}

.vf-loan-schedule-card .loan-table-wrap {
  max-height: calc(100vh - 220px);
  border: 1px solid #dfe5eb;
  border-radius: 0;
  overflow: auto;
}

.vf-loan-schedule-card .loan-schedule-table {
  min-width: 930px;
  border-collapse: collapse;
}

.vf-loan-schedule-card .loan-schedule-table th,
.vf-loan-schedule-card .loan-schedule-table td {
  padding: 12px 14px;
  border-right: 1px solid #dfe5eb;
  border-bottom: 1px solid #e8edf3;
  white-space: nowrap;
}

.vf-loan-schedule-card .loan-schedule-table th {
  background: #3268e8;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 650;
}

.vf-loan-schedule-card .loan-schedule-table td {
  color: #263340;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
}

.vf-loan-schedule-card .loan-schedule-table td:first-child {
  text-align: center;
}

.vf-loan-schedule-card .loan-schedule-table tbody tr:nth-child(odd) td {
  background: #f7f9fc;
}

.vf-shop-reference-footer {
  margin-top: 0;
  padding: 30px 0 28px;
  background: #f1f4f5;
  color: #333;
}

.vf-shop-footer-grid {
  display: grid;
  grid-template-columns: 1.62fr .58fr .78fr 1fr;
  gap: 44px;
  align-items: start;
}

.vf-shop-footer-company img {
  width: 286px;
  margin: 0 0 24px;
}

.vf-shop-footer-company p,
.vf-shop-footer-newsletter p,
.vf-shop-footer-newsletter label,
.vf-shop-footer-ecosystem {
  margin: 0 0 15px;
  color: #3f454b;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 400;
}

.vf-shop-footer-company strong {
  font-weight: 650;
}

.vf-shop-footer-links {
  padding-top: 34px;
  display: grid;
  gap: 19px;
}

.vf-shop-footer-links a {
  color: #4b4f53;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
}

.vf-shop-footer-links i {
  font-size: 10px;
  margin-left: 5px;
}

.vf-shop-footer-hotline {
  padding-top: 34px;
}

.vf-shop-footer-hotline h4,
.vf-shop-footer-newsletter h4 {
  margin: 0 0 17px;
  color: #333;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  text-transform: uppercase;
}

.vf-shop-footer-hotline h4:not(:first-child) {
  margin-top: 30px;
}

.vf-shop-footer-hotline p {
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: #7e8790;
  font-size: 15px;
}

.vf-shop-footer-hotline a,
.vf-shop-footer-newsletter a {
  color: #006eff;
}

.vf-shop-footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: #3f454b;
  font-size: 15px;
}

.vf-shop-footer-social span {
  flex: 0 0 100%;
}

.vf-shop-footer-social a {
  color: #4e5963;
  font-size: 18px;
}

.vf-shop-footer-ecosystem {
  margin-top: 26px;
  white-space: nowrap;
}

.vf-shop-footer-newsletter {
  padding-top: 34px;
}

.vf-shop-footer-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  margin: 17px 0 15px;
}

.vf-shop-footer-input input {
  width: 100%;
  min-width: 0;
  height: 39px;
  border: 0;
  background: #fff;
  padding: 0 12px;
  color: #3f454b;
  outline: 0;
  font-size: 13px;
}

.vf-shop-footer-input button {
  height: 39px;
  border: 0;
  border-radius: 2px;
  background: #1464f6;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.vf-shop-footer-newsletter label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.vf-shop-footer-newsletter input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin: 0;
  border: 1px solid #1b73ff;
  flex: 0 0 24px;
}

.vf-shop-footer-copy {
  margin-top: 34px;
  color: #777;
  font-size: 14px;
  text-align: right;
}

.vf-shop-chat,
.vf-shop-scrolltop {
  position: fixed;
  right: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.vf-shop-chat {
  bottom: 66px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2c83df;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 83, 178, .28);
  font-size: 24px;
}

.vf-shop-scrolltop {
  bottom: 22px;
  width: 38px;
  height: 38px;
  border: 1px solid #d6e4ff;
  border-radius: 50%;
  background: #fff;
  color: #1464f6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

@media (max-width: 1320px) {
  body[data-page="loan"] .nav-wrap {
    width: calc(100vw - 48px);
    gap: 20px;
  }

  body[data-page="loan"] .nav-menu {
    gap: 16px;
  }

  body[data-page="loan"] .nav-menu>a,
  body[data-page="loan"] .nav-menu>button {
    font-size: 14px;
  }

  .vf-shop-loan-grid {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) 560px;
  }
}

@media (max-width: 1100px) {
  body[data-page="loan"] .nav-menu {
    position: fixed;
    inset: 84px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid #e3e8ee;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 24, 40, .12);
  }

  body[data-page="loan"] .nav-menu.open {
    display: flex;
  }

  body[data-page="loan"] .nav-menu>a,
  body[data-page="loan"] .nav-menu>button {
    line-height: 1.35;
    padding: 13px 10px;
  }

  .vf-shop-loan-grid,
  .vf-shop-footer-grid {
    grid-template-columns: 1fr;
  }

  .vf-shop-loan-grid {
    gap: 28px;
  }

  .vf-shop-loan-brand {
    min-height: 0;
    padding-top: 0;
  }

  .vf-shop-loan-brand img {
    width: 360px;
  }

  .vf-shop-loan-form {
    min-height: 0;
  }

  .vf-shop-footer-links,
  .vf-shop-footer-hotline,
  .vf-shop-footer-newsletter {
    padding-top: 0;
  }

  .vf-shop-footer-copy {
    text-align: left;
  }

  .vf-shop-footer-ecosystem {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  body[data-page="loan"] .nav-wrap {
    width: calc(100vw - 28px);
    min-height: 72px;
  }

  body[data-page="loan"] .brand img {
    width: 104px;
  }

  body[data-page="loan"] .header-test-drive {
    display: none;
  }

  body[data-page="loan"] .nav-menu {
    inset: 72px 14px auto;
  }

  .vf-shop-loan-head {
    padding-top: 8px;
  }

  .vf-shop-loan-head h1 {
    font-size: 38px;
    line-height: 1.18;
  }

  .vf-shop-loan-head p {
    font-size: 14px;
  }

  .vf-shop-loan-head p br {
    display: none;
  }

  .vf-shop-loan-section {
    padding-top: 30px;
  }

  .vf-shop-loan-page .container,
  .vf-shop-reference-footer .container {
    width: min(100vw - 28px, 100%);
  }

  .vf-shop-loan-form {
    padding: 18px 14px;
  }

  .vf-shop-choice-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vf-shop-primary {
    width: 100%;
  }

  .vf-loan-schedule-modal {
    padding: 18px 10px;
  }

  .vf-loan-schedule-card {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 36px);
  }

  .vf-loan-schedule-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 16px 12px;
  }

  .vf-loan-schedule-head h3 {
    font-size: 20px;
  }

  .vf-loan-schedule-actions {
    width: 100%;
    justify-content: space-between;
  }

  .vf-loan-download-link {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 10px;
    font-size: 12px;
  }

  .vf-loan-schedule-card #loanResult,
  .vf-loan-summary {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vf-shop-footer-company img {
    width: 230px;
  }

  .vf-shop-footer-input {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .vf-shop-footer-input button {
    width: 100%;
  }

  .vf-shop-chat {
    width: 52px;
    height: 52px;
  }
}

/* Keep the site chrome original on the loan page; only the calculator body is customized. */
body[data-page="loan"] .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, .96);
  border-bottom: 1px solid rgba(10, 59, 120, .08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.dark[data-page="loan"] .site-header {
  background: rgba(7, 20, 38, .92);
  border-bottom-color: rgba(255, 255, 255, .1);
}

body[data-page="loan"] .nav-wrap {
  width: min(1290px, calc(100vw - 140px));
  min-height: 82px;
  gap: 18px;
  max-width: none;
}

body[data-page="loan"] .brand {
  flex: 0 0 auto;
}

body[data-page="loan"] .brand img {
  width: 186px;
}

body[data-page="loan"] .nav-menu {
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 4px;
}

body[data-page="loan"] .nav-menu>a,
body[data-page="loan"] .nav-menu>button {
  padding: 28px 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: normal;
  text-transform: none;
}

body[data-page="loan"] .nav-actions {
  flex: 0 0 auto;
  gap: 10px;
}

body[data-page="loan"] .theme-only,
body[data-page="loan"] .member-account-link {
  display: inline-grid !important;
}

body[data-page="loan"] .header-test-drive {
  width: auto;
  height: auto;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 86, 166, .25);
  font-size: inherit;
  text-transform: none;
}

body[data-page="loan"] .header-test-drive i {
  display: inline-block;
}

body[data-page="loan"] .menu-toggle {
  display: none !important;
}

body[data-page="loan"] .mega-menu {
  display: block !important;
}

body[data-page="loan"] .floating-contact {
  display: grid !important;
}

@media (max-width: 1024px) {
  body[data-page="loan"] .nav-menu {
    position: fixed;
    inset: 110px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body[data-page="loan"] .nav-menu.open {
    display: flex;
  }

  body[data-page="loan"] .nav-menu>a,
  body[data-page="loan"] .nav-menu>button {
    padding: 14px;
    text-align: left;
  }

  body[data-page="loan"] .header-test-drive {
    display: none;
  }

  body[data-page="loan"] .menu-toggle {
    display: inline-grid !important;
    place-items: center;
  }
}

@media (max-width: 720px) {
  body[data-page="loan"] .brand img {
    width: 128px;
  }

  body[data-page="loan"] .nav-wrap {
    width: min(1290px, calc(100vw - 32px));
  }
}

/* Loan page final guard: show the real middle title and leave header/footer untouched. */
body[data-page="loan"] .vf-page-hero {
  display: none !important;
}

body[data-page="loan"] .vf-shop-loan-head {
  display: block !important;
  padding: 6px 0 0 !important;
  background: #fff !important;
  color: #1f1f1f !important;
  text-align: center;
}

body[data-page="loan"] .vf-shop-loan-head h1 {
  margin: 0;
  color: #1f1f1f !important;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
}

body[data-page="loan"] .vf-shop-loan-head p {
  margin: 21px auto 0;
  max-width: 720px;
  color: #1f1f1f !important;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

body[data-page="loan"] .vf-shop-loan-section {
  position: static !important;
  padding: 41px 0 48px !important;
  background: #fff !important;
}

body[data-page="loan"] .vf-shop-loan-section::before,
body[data-page="loan"] .vf-shop-loan-section::after {
  content: none !important;
  display: none !important;
}

body[data-page="loan"] .vf-shop-rate,
body.dark[data-page="loan"] .vf-shop-rate {
  background: #fff !important;
}

body[data-page="loan"] .vf-shop-rate input,
body.dark[data-page="loan"] .vf-shop-rate input {
  background: transparent !important;
  color: #2a2a2a !important;
}

body[data-page="loan"] .vf-shop-rate span,
body.dark[data-page="loan"] .vf-shop-rate span {
  color: #2a2a2a !important;
}

@media (max-width: 720px) {
  body[data-page="loan"] .vf-shop-loan-head {
    padding-top: 8px !important;
  }

  body[data-page="loan"] .vf-shop-loan-head h1 {
    font-size: 38px;
    line-height: 1.18;
  }

  body[data-page="loan"] .vf-shop-loan-head p {
    font-size: 14px;
  }

  body[data-page="loan"] .vf-shop-loan-head p br {
    display: none;
  }

  body[data-page="loan"] .vf-shop-loan-section {
    padding-top: 30px !important;
  }
}

/* Home mobile guard: keep real content readable without horizontal clipping. */
@media (max-width: 560px) {
  body[data-page="home"] .site-header .nav-wrap {
    width: calc(100vw - 12px);
    gap: 6px;
  }

  body[data-page="home"] .site-header .brand img {
    width: 108px;
  }

  body[data-page="home"] .site-header .nav-actions {
    gap: 4px;
  }

  body[data-page="home"] .site-header .icon-btn {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  body[data-page="home"] .site-header .header-test-drive {
    display: none !important;
  }

  body[data-page="home"] .site-header .menu-toggle {
    display: inline-grid !important;
  }

  body[data-page="home"] .home-container,
  body[data-page="home"] .home-events .home-container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  body[data-page="home"] .home-car-grid,
  body[data-page="home"] .home-tools,
  body[data-page="home"] .home-news-grid,
  body[data-page="home"] .home-charge-grid,
  body[data-page="home"] .home-event-feature,
  body[data-page="home"] .home-service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-page="home"] .home-car-card {
    padding: 18px 14px;
  }

  body[data-page="home"] .home-car-card .home-car-img {
    height: auto;
  }

  body[data-page="home"] .home-car-card .home-car-img img {
    /* max-height: 136px; */
  }

  body[data-page="home"] .home-car-card .home-specs b {
    display: block;
    float: none;
  }

  body[data-page="home"] .home-service-list article.has-icon {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-page="home"] .home-service-image img {
    max-height: 280px;
  }

  body[data-page="home"] .home-charge-grid {
    gap: 30px;
  }

  body[data-page="home"] .home-charge-grid img {
    height: 100%;
  }
}

/* P3.3 final motion guard: desktop keeps hover, touch devices get tap feedback only. */
@media (hover: none),
(pointer: coarse),
(max-width: 760px) {

  .btn:hover,
  .icon-btn:hover,
  .quick-card:hover,
  .product-card:hover,
  .price-card:hover,
  .news-card:hover,
  .service-card-pro:hover,
  .shop-card:hover,
  .vf-product-card:hover,
  .part-related-card:hover,
  .mega-car:hover,
  .home-tools a:hover,
  .home-car-card:hover,
  .home-service-list article:hover,
  .home-event-list a:hover,
  .product-chip:hover,
  .product-check:hover,
  .product-reset:hover,
  .cell-filter-pill:hover,
  .cell-active-filter:hover,
  .vf-btn:hover {
    transform: none !important;
  }

  .mega-car:hover img,
  .home-car-card:hover .home-car-img img,
  .product-card:hover .product-media img,
  .vf-product-card:hover .vf-product-media img,
  .shop-card:hover .shop-media img,
  .home-charge-grid article:hover img,
  .home-news-grid article:hover img,
  .home-event-feature:hover img {
    transform: none !important;
  }

  .btn:active,
  .icon-btn:active,
  .home-tools a:active,
  .home-car-card:active,
  .shop-card:active,
  .service-card-pro:active,
  .news-card:active,
  .cell-filter-pill:active,
  .cell-active-filter:active {
    transform: translateY(var(--hover-lift)) !important;
  }

  body.vf-motion-ready .vf-reveal {
    transition-delay: 0ms;
  }
}

@media (prefers-reduced-motion: reduce) {

  body.vf-motion-ready .vf-reveal,
  body.vf-motion-ready .vf-reveal[data-motion] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Header active final guard: keeps route/com state visible after page-scoped overrides. */
body.page .site-header .nav-menu>a.active,
body.page .site-header .nav-menu>button.active,
body.page .site-header .nav-menu>[aria-current="page"] {
  color: var(--blue-700) !important;
  background: transparent !important;
  font-weight: 650;
}

body.dark.page .site-header .nav-menu>a.active,
body.dark.page .site-header .nav-menu>button.active,
body.dark.page .site-header .nav-menu>[aria-current="page"] {
  color: #9bd7ff !important;
}

body.page .site-header .nav-menu>a.active::after,
body.page .site-header .nav-menu>button.active::after,
body.page .site-header .nav-menu>[aria-current="page"]::after {
  content: "" !important;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  display: block !important;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
}

body.page .site-header .member-account-link.active,
body.page .site-header .member-account-link[aria-current="page"] {
  color: var(--blue-700) !important;
  border-color: rgba(15, 86, 166, .38) !important;
  background: #eef7ff !important;
  box-shadow: 0 0 0 3px rgba(35, 183, 255, .14) !important;
}

body.dark.page .site-header .member-account-link.active,
body.dark.page .site-header .member-account-link[aria-current="page"] {
  color: #9bd7ff !important;
  border-color: rgba(155, 215, 255, .42) !important;
  background: rgba(155, 215, 255, .11) !important;
}

@media (max-width: 1024px) {

  body.page .site-header .nav-menu>a.active::after,
  body.page .site-header .nav-menu>button.active::after,
  body.page .site-header .nav-menu>[aria-current="page"]::after {
    left: 14px;
    right: auto;
    bottom: 8px;
    width: 34px;
  }
}

/* P3.1 dark-mode QA guard: remove remaining white slabs found on detail and loan pages. */
body.dark .vf-subnav,
body.dark .limo-subnav {
  background: rgba(7, 20, 38, .94) !important;
  border-color: rgba(255, 255, 255, .12) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24) !important;
}

body.dark .vf-subnav .vf-nav-link,
body.dark .limo-subnav .vf-nav-link {
  color: #c8d8ec !important;
}

body.dark .vf-subnav .vf-nav-link:hover,
body.dark .vf-subnav .vf-nav-link.active,
body.dark .limo-subnav .vf-nav-link:hover,
body.dark .limo-subnav .vf-nav-link.active {
  color: #9bd7ff !important;
  border-color: #58a6ff !important;
}

@media (min-width: 721px) {
  body.dark .limo-subnav {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

  body.dark .limo-subnav-rail-track {
    background: rgba(210, 220, 236, .22);
  }

  body.dark .limo-subnav-links {
    background: rgba(7, 20, 38, .96);
    border-color: rgba(255, 255, 255, .1);
    box-shadow: 0 22px 44px rgba(0, 0, 0, .38);
  }

  body.dark .limo-subnav .vf-nav-link:hover,
  body.dark .limo-subnav .vf-nav-link:focus-visible,
  body.dark .limo-subnav .vf-nav-link.active {
    background: rgba(255, 255, 255, .08);
    border-color: transparent !important;
  }
}

body.dark[data-page="loan"] .vf-shop-loan-page,
body.dark[data-page="loan"] .vf-shop-loan-head,
body.dark[data-page="loan"] .vf-shop-loan-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(30, 115, 190, .14), transparent 26rem),
    #071426 !important;
  color: #eef6ff !important;
}

body.dark[data-page="loan"] .vf-shop-loan-head h1,
body.dark[data-page="loan"] .vf-shop-loan-head p,
body.dark[data-page="loan"] .vf-shop-field label {
  color: #f4f9ff !important;
}

body.dark[data-page="loan"] .vf-shop-loan-form {
  background: rgba(15, 32, 58, .94) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  color: #eef6ff !important;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .28) !important;
}

body.dark[data-page="loan"] .vf-shop-loan-brand img {
  filter: brightness(0) invert(1);
  opacity: .94;
}

body.dark[data-page="loan"] .vf-shop-field select,
body.dark[data-page="loan"] .vf-shop-rate,
body.dark[data-page="loan"] .vf-shop-choice-row button,
body.dark[data-page="loan"] .select2-container--default .select2-selection--single,
body.dark[data-page="loan"] .select2-dropdown,
body.dark[data-page="loan"] .select2-container--default .select2-search--dropdown .select2-search__field {
  background: rgba(7, 20, 38, .88) !important;
  border-color: rgba(255, 255, 255, .16) !important;
  color: #edf6ff !important;
}

body.dark[data-page="loan"] .vf-shop-rate input,
body.dark[data-page="loan"] .vf-shop-rate span,
body.dark[data-page="loan"] .select2-container--default .select2-selection--single .select2-selection__rendered,
body.dark[data-page="loan"] .select2-container--default .select2-results__option,
body.dark[data-page="loan"] .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #edf6ff !important;
}

body.dark[data-page="loan"] .vf-shop-choice-row button:hover,
body.dark[data-page="loan"] .vf-shop-choice-row button.active,
body.dark[data-page="loan"] .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #1e73be !important;
  border-color: #58a6ff !important;
  color: #fff !important;
}

body.dark .select2-container--default .vf-shop-loan-select2-selection,
body.dark .vf-shop-loan-form .select2-container--default .select2-selection--single,
body.dark .select2-dropdown.vf-shop-loan-select2-dropdown,
body.dark .select2-dropdown.vf-shop-loan-select2-dropdown .select2-results,
body.dark .select2-dropdown.vf-shop-loan-select2-dropdown .select2-results__options,
body.dark .select2-dropdown.vf-shop-loan-select2-dropdown .select2-search--dropdown,
body.dark .select2-dropdown.vf-shop-loan-select2-dropdown .select2-search__field {
  background: rgba(7, 20, 38, .96) !important;
  border-color: rgba(132, 173, 223, .35) !important;
  color: #edf6ff !important;
}

body.dark .select2-container--default .vf-shop-loan-select2-selection .select2-selection__rendered,
body.dark .select2-container--default .vf-shop-loan-select2-selection .select2-selection__placeholder,
body.dark .vf-shop-loan-form .select2-container--default .select2-selection__rendered,
body.dark .vf-shop-loan-form .select2-container--default .select2-selection__placeholder,
body.dark .select2-dropdown.vf-shop-loan-select2-dropdown .select2-results__option {
  color: #edf6ff !important;
  background: none;
}

body.dark .select2-dropdown.vf-shop-loan-select2-dropdown .select2-results__option[aria-selected=true] {
  background: rgba(30, 115, 190, .24) !important;
  color: #fff !important;
}

body.dark .select2-dropdown.vf-shop-loan-select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background: #1e73be !important;
  color: #fff !important;
}

.policy-section {
  background: #f6f9fe;
  padding: 54px 0;
}

.policy-head {
  align-items: flex-end;
  margin-bottom: 22px;
}

.policy-head .section-desc {
  max-width: 760px;
}

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

.policy-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #d9e4f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 36, 64, .07);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.policy-item:hover {
  border-color: rgba(30, 115, 190, .38);
  box-shadow: 0 18px 44px rgba(15, 36, 64, .11);
  transform: translateY(-2px);
}

.policy-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eef5ff;
  color: #1e73be;
  font-weight: 650;
}

.policy-copy h2 {
  margin: 0 0 5px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.policy-copy h2,
.policy-copy h2 a {
  color: #10203a;
  text-decoration: none;
}

.policy-copy p {
  margin: 0;
  color: #5c6b80;
  line-height: 1.65;
}

.policy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e73be;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.policy-link:hover,
.policy-item:hover .policy-link,
.policy-item:hover .policy-copy h2 {
  color: #de001b;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #1e73be;
  font-weight: 650;
  text-decoration: none;
}

.policy-back:hover {
  color: #de001b;
}

.policy-detail-box {
  max-width: 880px;
  padding: 24px;
  border: 1px solid #d9e4f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 36, 64, .07);
}

.policy-detail-content {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.policy-detail-content p {
  margin: 0;
  color: #3e4e63;
  line-height: 1.65;
}

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

.policy-sidebar {
  position: sticky;
  top: 96px;
  padding: 18px;
  border: 1px solid #d9e4f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 36, 64, .07);
}

.policy-sidebar h2 {
  margin: 0 0 12px;
  color: #10203a;
  font-size: 1rem;
  line-height: 1.35;
}

.policy-side-list {
  display: grid;
  gap: 8px;
}

.policy-side-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #e0e8f3;
  border-radius: 8px;
  color: #10203a;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.policy-side-list span {
  color: #1e73be;
  font-size: .78rem;
  font-weight: 650;
}

.policy-side-list a:hover,
.policy-side-list a.active {
  border-color: rgba(30, 115, 190, .36);
  background: #eef5ff;
  color: #1e73be;
}

body.dark .policy-section {
  background: #071426;
}

body.dark .policy-item {
  background: rgba(15, 32, 58, .94);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

body.dark .policy-index {
  background: rgba(88, 166, 255, .16);
  color: #9bd7ff;
}

body.dark .policy-copy h2,
body.dark .policy-copy h2 a {
  color: #f4f9ff;
}

body.dark .policy-copy p {
  color: #c8d8ec;
}

body.dark .policy-link {
  color: #9bd7ff;
}

body.dark .policy-detail-box {
  background: rgba(15, 32, 58, .94);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

body.dark .policy-sidebar {
  background: rgba(15, 32, 58, .94);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

body.dark .policy-sidebar h2,
body.dark .policy-side-list a {
  color: #f4f9ff;
}

body.dark .policy-side-list a {
  border-color: rgba(255, 255, 255, .12);
}

body.dark .policy-side-list span {
  color: #9bd7ff;
}

body.dark .policy-side-list a:hover,
body.dark .policy-side-list a.active {
  background: rgba(88, 166, 255, .16);
  border-color: rgba(155, 215, 255, .36);
  color: #9bd7ff;
}

body.dark .policy-back {
  color: #9bd7ff;
}

body.dark .policy-detail-content p {
  color: #c8d8ec;
}

@media (max-width: 767px) {
  .policy-section {
    padding: 40px 0;
  }

  .policy-detail-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }

  .policy-item {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .policy-detail-box {
    padding: 18px;
  }

  .policy-link {
    justify-content: flex-start;
  }
}

.site-header .nav-news-menu {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
}

.site-header .nav-products-menu {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
}

.site-header .nav-products-menu .nav-products-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 28px 6px 28px 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.site-header .nav-products-menu .nav-products-link:hover,
.site-header .nav-products-menu .nav-products-link.active,
.site-header .nav-products-menu .nav-products-link[aria-current="page"] {
  color: var(--blue-700);
  background: transparent;
  font-weight: 650;
}

.site-header .nav-products-menu .nav-products-link.active::after,
.site-header .nav-products-menu .nav-products-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 6px;
  bottom: 18px;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
}

.site-header .nav-products-menu .nav-products-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 28px 10px 28px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.site-header .nav-products-menu .nav-products-trigger .nav-panel-chevron {
  display: inline-block;
  font-size: 11px;
  transition: transform .2s ease;
}

.site-header .nav-products-menu:hover .nav-products-trigger .nav-panel-chevron,
.site-header .nav-products-menu:focus-within .nav-products-trigger .nav-panel-chevron,
.site-header .nav-products-menu .nav-products-trigger[aria-expanded="true"] .nav-panel-chevron {
  transform: rotate(180deg);
}

.site-header .nav-news-menu>a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 28px 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.site-header .nav-news-menu>a:hover,
.site-header .nav-news-menu>a.active,
.site-header .nav-news-menu>a[aria-current="page"] {
  color: var(--blue-700);
  background: transparent;
  font-weight: 650;
}

.site-header .nav-news-menu>a.active::after,
.site-header .nav-news-menu>a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
}

.site-header .nav-news-menu>a i {
  font-size: 11px;
  transition: transform .2s ease;
}

.site-header .nav-news-menu:hover>a i,
.site-header .nav-news-menu:focus-within>a i {
  transform: rotate(180deg);
}

.site-header .nav-news-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 70;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 36, 64, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.site-header .nav-news-menu.open .nav-news-dropdown,
.site-header .nav-news-menu:hover .nav-news-dropdown,
.site-header .nav-news-menu:focus-within .nav-news-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header .nav-news-dropdown a,
.site-header .nav-mobile-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .nav-news-dropdown a:hover,
.site-header .nav-news-dropdown a.active,
.site-header .nav-mobile-panel a:hover,
.site-header .nav-mobile-panel a.active {
  background: #eef7ff;
  color: var(--blue-700);
}

.site-header .nav-mobile-panel {
  display: none;
}

.site-header .nav-parts-menu {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
}

.site-header .nav-parts-menu>a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 28px 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.site-header .nav-parts-menu>a:hover,
.site-header .nav-parts-menu>a.active,
.site-header .nav-parts-menu>a[aria-current="page"] {
  color: var(--blue-700);
  background: transparent;
  font-weight: 600;
}

.site-header .nav-parts-menu>a.active::after,
.site-header .nav-parts-menu>a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
}

.site-header .nav-parts-menu>a i {
  font-size: 11px;
  transition: transform .2s ease;
}

.site-header .nav-parts-menu:hover>a i,
.site-header .nav-parts-menu:focus-within>a i {
  transform: rotate(180deg);
}

.site-header .nav-parts-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 70;
  width: min(680px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 36, 64, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.site-header .nav-parts-menu:hover .nav-parts-dropdown,
.site-header .nav-parts-menu:focus-within .nav-parts-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header .nav-parts-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 11px 12px;
  border-radius: 10px;
  background: #eef7ff;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.site-header .nav-parts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: min(440px, calc(100vh - 150px));
  overflow-y: auto;
  padding-right: 2px;
}

.site-header .nav-parts-group {
  min-width: 0;
  padding: 8px;
  border: 1px solid #e4edf7;
  border-radius: 10px;
  background: #fbfdff;
}

.site-header .nav-parts-title {
  display: block;
  padding: 8px 9px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.site-header .nav-parts-children {
  display: grid;
  gap: 2px;
  margin-top: 2px;
}

.site-header .nav-parts-children a {
  display: block;
  padding: 8px 9px 8px 18px;
  border-radius: 8px;
  color: #52657d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.site-header .nav-parts-title:hover,
.site-header .nav-parts-title:focus-visible,
.site-header .nav-parts-children a:hover,
.site-header .nav-parts-children a:focus-visible {
  background: #eef7ff;
  color: var(--blue-700);
}

body.dark .site-header .nav-news-menu>a {
  color: #e9f4ff;
}

body.dark .site-header .nav-products-menu .nav-products-link,
body.dark .site-header .nav-products-menu .nav-products-trigger {
  color: #e9f4ff;
}

body.dark .site-header .nav-products-menu .nav-products-link:hover,
body.dark .site-header .nav-products-menu .nav-products-link.active,
body.dark .site-header .nav-products-menu .nav-products-link[aria-current="page"] {
  color: #9bd7ff;
}

body.dark .site-header .nav-parts-menu>a {
  color: #e9f4ff;
}

body.dark .site-header .nav-news-menu>a:hover,
body.dark .site-header .nav-news-menu>a.active,
body.dark .site-header .nav-news-menu>a[aria-current="page"] {
  color: #9bd7ff;
}

body.dark .site-header .nav-parts-menu>a:hover,
body.dark .site-header .nav-parts-menu>a.active,
body.dark .site-header .nav-parts-menu>a[aria-current="page"] {
  color: #9bd7ff;
}

body.dark .site-header .nav-news-dropdown {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(15, 32, 58, .96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

body.dark .site-header .nav-parts-dropdown {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(15, 32, 58, .96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

body.dark .site-header .nav-news-dropdown a,
body.dark .site-header .nav-mobile-panel a {
  color: #e9f4ff;
}

body.dark .site-header .nav-parts-all,
body.dark .site-header .nav-parts-title,
body.dark .site-header .nav-parts-children a {
  color: #e9f4ff;
}

body.dark .site-header .nav-parts-all,
body.dark .site-header .nav-parts-title:hover,
body.dark .site-header .nav-parts-title:focus-visible,
body.dark .site-header .nav-parts-children a:hover,
body.dark .site-header .nav-parts-children a:focus-visible {
  background: rgba(88, 166, 255, .16);
  color: #9bd7ff;
}

body.dark .site-header .nav-parts-group {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

body.dark .site-header .nav-news-dropdown a:hover,
body.dark .site-header .nav-news-dropdown a.active,
body.dark .site-header .nav-mobile-panel a:hover,
body.dark .site-header .nav-mobile-panel a.active {
  background: rgba(88, 166, 255, .16);
  color: #9bd7ff;
}

@media (max-width: 1024px) {
  .site-header .nav-products-menu {
    display: flex;
    align-self: stretch;
    align-items: stretch;
  }

  .site-header .nav-products-menu .nav-products-link {
    flex: 1 1 auto;
    padding: 14px 12px 14px 14px;
  }

  .site-header .nav-products-menu .nav-products-trigger {
    flex: 0 0 auto;
    padding: 14px;
  }

  .site-header .nav-products-menu .nav-products-link.active::after,
  .site-header .nav-products-menu .nav-products-link[aria-current="page"]::after {
    left: 14px;
    right: auto;
    bottom: 8px;
    width: 34px;
  }

  .site-header .nav-news-menu {
    display: block;
    align-self: stretch;
  }

  .site-header .nav-parts-menu {
    display: block;
    align-self: stretch;
  }

  .site-header .nav-news-menu>a {
    width: 100%;
    padding: 14px;
  }

  .site-header .nav-parts-menu>a {
    width: 100%;
    padding: 14px;
  }

  .site-header .nav-news-menu>a.active::after,
  .site-header .nav-news-menu>a[aria-current="page"]::after {
    left: 14px;
    right: auto;
    bottom: 8px;
    width: 34px;
  }

  .site-header .nav-parts-menu>a.active::after,
  .site-header .nav-parts-menu>a[aria-current="page"]::after {
    left: 14px;
    right: auto;
    bottom: 8px;
    width: 34px;
  }

  .site-header .nav-news-menu>a i {
    margin-left: auto;
    transform: none !important;
  }

  .site-header .nav-parts-menu>a i {
    margin-left: auto;
    transform: none !important;
  }

  .site-header .nav-news-dropdown {
    display: none;
  }

  .site-header .nav-parts-dropdown {
    display: none;
  }

  .site-header .nav-mobile-panel.open {
    display: grid;
    gap: 2px;
    padding: 0 0 8px 14px;
  }

  .site-header .nav-mobile-panel .nav-mobile-parent {
    font-weight: 650;
  }

  .site-header .nav-mobile-panel .nav-mobile-child {
    padding-left: 28px;
    color: #52657d;
    font-weight: 650;
  }

  .site-header .nav-mobile-panel a {
    padding: 9px 14px;
    white-space: normal;
  }
}

.nav-mobile-panel {
  display: none;
}

.nav-menu>a .nav-panel-chevron {
  display: none;
}

.nav-panel-toggle .nav-panel-chevron {
  transition: transform .2s ease;
}

.nav-panel-toggle[aria-expanded="true"] .nav-panel-chevron {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {

  body .site-header .mega-menu,
  body[data-page="loan"] .site-header .mega-menu {
    display: none !important;
  }

  body .site-header .nav-menu {
    max-height: calc(100vh - 126px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body .site-header .nav-menu>.nav-panel-toggle {
    justify-content: space-between;
  }

  body .site-header .nav-menu>a .nav-panel-chevron {
    display: inline-block;
  }

  body .site-header .nav-mobile-panel.open {
    display: grid;
  }

  body .site-header .nav-mobile-panel {
    gap: 6px;
    margin: -4px 0 6px;
    padding: 0 0 8px 12px;
    border-left: 2px solid rgba(30, 115, 190, .18);
  }

  body .site-header .nav-mobile-panel a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #40516a;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
  }

  body .site-header .nav-mobile-panel a:hover,
  body .site-header .nav-mobile-panel a:focus-visible {
    background: #eef5ff;
    color: var(--blue-700);
  }

  body .site-header .nav-mobile-experience {
    display: grid;
    gap: 6px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(30, 115, 190, .14);
  }

  body .site-header .nav-mobile-section-title {
    display: block;
    padding: 2px 14px 4px;
    color: var(--blue-700);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  body .site-header .nav-mobile-experience a {
    gap: 10px;
  }

  body .site-header .nav-mobile-experience a>i:first-child {
    width: 20px;
    color: var(--blue-700);
    text-align: center;
  }

  body .site-header .nav-mobile-tool-image {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  body .site-header .nav-mobile-experience .nav-mobile-arrow {
    margin-left: auto;
    font-size: 12px;
  }

  body.dark .site-header .nav-mobile-panel {
    border-left-color: rgba(155, 215, 255, .28);
  }

  body.dark .site-header .nav-mobile-panel a {
    color: #c8d8ec;
  }

  body.dark .site-header .nav-mobile-experience {
    border-top-color: rgba(155, 215, 255, .18);
  }

  body.dark .site-header .nav-mobile-section-title,
  body.dark .site-header .nav-mobile-experience a>i:first-child {
    color: #9bd7ff;
  }

  body.dark .site-header .nav-mobile-panel a:hover,
  body.dark .site-header .nav-mobile-panel a:focus-visible {
    background: rgba(88, 166, 255, .16);
    color: #9bd7ff;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 1024px) {
    body .site-header .nav-menu {
      max-height: calc(100dvh - 126px);
    }
  }
}

/* Parts listing polish */
body[data-page="parts"] .vf-shop-page .section {
  padding: 52px 0 78px;
}

body[data-page="parts"] .vf-shop-page>.section>.container {
  width: min(1220px, calc(100vw - 32px));
}

body[data-page="parts"] .shop-main {
  gap: 22px;
}

body[data-page="parts"] .vf-shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body[data-page="parts"] .vf-shop-grid .shop-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dce6f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(12, 34, 62, .07);
}

body[data-page="parts"] .vf-shop-grid .shop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 115, 190, .36);
  box-shadow: 0 24px 50px rgba(12, 34, 62, .11);
}

body[data-page="parts"] .vf-shop-grid .shop-media {
  /* height: 250px; */
  padding: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(30, 115, 190, .08), transparent 11rem),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

body[data-page="parts"] .vf-shop-grid .shop-media img {
  /* width: 100%; */
  /* height: 100%; */
  /* max-height: none; */
  /* object-fit: contain; */
}

body[data-page="parts"] .shop-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-top: 1px solid #e7edf5;
}

body[data-page="parts"] .shop-body .tag {
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: #edf5ff;
  color: #143b77;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

body[data-page="parts"] .shop-body h3 {
  min-height: 0;
  margin: 15px 0 10px;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

body[data-page="parts"] .shop-desc {
  display: -webkit-box;
  margin: 0 0 16px;
  overflow: hidden;
  color: #667386;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

body[data-page="parts"] .shop-body .price {
  margin-top: auto;
  color: #1f55a5;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 650;
  line-height: 1;
}

body[data-page="parts"] .shop-card-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

body[data-page="parts"] .shop-card-foot .shop-detail-link {
  margin: 0;
  color: #5f6f84;
  font-size: 14px;
}

body[data-page="parts"] .shop-card-foot .btn {
  min-height: 48px;
  padding: 0 20px;
  font-size: 15px;
  box-shadow: 0 14px 28px rgba(15, 86, 166, .2);
}

body[data-page="parts"] .shop-card-foot .btn i {
  font-size: 15px;
}

/* Keep the cart affordance clear of vertical contact/tools stacks. */
.vf-floating-cart {
  top: auto;
  right: 22px;
  bottom: 26px;
  transform: none;
}

.vf-floating-cart:hover {
  transform: translateY(-2px);
}

body.com-gio-hang .vf-floating-cart {
  display: inline-grid !important;
}

body.com-gio-hang .vf-cart-panel {
  display: grid !important;
}

body.com-gio-hang .vf-cart-panel-backdrop {
  display: block !important;
}

body.dark[data-page="parts"] .vf-shop-grid .shop-card {
  background: rgba(15, 32, 58, .94);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .24);
}

body.dark[data-page="parts"] .vf-shop-grid .shop-media {
  background:
    radial-gradient(circle at 50% 45%, rgba(88, 166, 255, .18), transparent 11rem),
    linear-gradient(180deg, #132642, #0a172b);
}

body.dark[data-page="parts"] .shop-body {
  border-top-color: rgba(255, 255, 255, .13);
}

body.dark[data-page="parts"] .shop-body .tag {
  background: rgba(88, 166, 255, .14);
  color: #d8ebff;
}

body.dark[data-page="parts"] .shop-body h3 {
  color: #f4f9ff;
}

body.dark[data-page="parts"] .shop-desc,
body.dark[data-page="parts"] .shop-card-foot .shop-detail-link {
  color: #b8c9df;
}

body.dark[data-page="parts"] .shop-body .price {
  color: #72b8ff;
}

@media (max-width: 1024px) {
  body[data-page="parts"] .vf-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-floating-cart {
    right: 16px;
    bottom: 96px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 640px) {
  body[data-page="parts"] .vf-shop-page .section {
    padding: 30px 0 58px;
  }

  body[data-page="parts"] .vf-shop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[data-page="parts"] .vf-shop-grid .shop-media {
    height: 220px;
  }

  body[data-page="parts"] .shop-body {
    padding: 18px;
  }

  body[data-page="parts"] .shop-body h3 {
    font-size: 20px;
  }

  body[data-page="parts"] .shop-card-foot .btn,
  body[data-page="parts"] .shop-card-foot .shop-detail-link {
    width: 100%;
    justify-content: center;
  }

  .vf-floating-cart {
    right: 12px;
    bottom: 106px;
  }
}

/* QC VinFast 3.6 refinements */
.home-hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.limo-showcase-summary p {
  display: none;
}

.limo-showcase-card .limo-showcase-overlay {
  min-height: 34%;
}

.limo-showcase-card .limo-showcase-overlay p {
  display: block;
}

.limo-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 210px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  background: rgba(4, 20, 38, .26);
  color: #fff;
  transform: translateX(-50%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
  transition: transform .2s ease, background .2s ease;
  opacity: 0;
}

.limo-scroll-cue:hover,
.limo-scroll-cue:focus-visible {
  color: #fff;
  background: rgba(25, 115, 220, .72);
  transform: translateX(-50%) translateY(3px);
}

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

.limo-spec-basic-grid > div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(15, 51, 92, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.limo-spec-basic-grid strong {
  display: block;
  color: #0c1a2d;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 750;
}

.limo-spec-basic-grid span {
  display: block;
  margin-top: 8px;
  color: #475569;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.limo-version-basic-panel {
  display: none;
}

.limo-version-basic-panel.active {
  display: block;
}

.limo-spec-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.limo-spec-open,
.limo-spec-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid #1b64b0;
  border-radius: 999px;
  background: #fff;
  color: #1257a8;
  font-weight: 750;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.limo-spec-open:hover,
.limo-spec-download:hover {
  background: #0b63ce;
  color: #fff;
  transform: translateY(-1px);
}

.limo-spec-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.limo-spec-drawer.open {
  display: block;
}

.limo-spec-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 12, 26, .58);
  cursor: pointer;
}

.limo-spec-drawer-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1040px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 42px));
  overflow: auto;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .3);
  transform: translate(-50%, -50%);
  outline: 0;
}

.limo-spec-drawer-panel > header {
  position: sticky;
  top: -24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -24px -24px 18px;
  padding: 18px 24px;
  border-bottom: 1px solid #e3ebf4;
  background: #fff;
}

.limo-spec-drawer-panel > header strong {
  color: #102033;
  font-size: 20px;
  font-weight: 750;
}

.limo-spec-drawer-panel > header button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d7e3f1;
  border-radius: 50%;
  background: #f8fbff;
  color: #102033;
  cursor: pointer;
}

.limo-comparison-tabs .limo-compare-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.limo-compare-tab-nav button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #d7e3f1;
  border-radius: 999px;
  background: #fff;
  color: #34445a;
  font-weight: 750;
  cursor: pointer;
}

.limo-compare-tab-nav button.active {
  border-color: #0b63ce;
  background: #0b63ce;
  color: #fff;
}

.limo-compare-tab-panel {
  display: none;
}

.limo-compare-tab-panel.active {
  display: block;
}

.limo-compare-tab-panel .limo-detail-content-body {
  overflow-x: auto;
}

.limo-compare-tab-panel .limo-detail-content-body table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.limo-compare-tab-panel .limo-detail-content-body th,
.limo-compare-tab-panel .limo-detail-content-body td {
  border: 1px solid #dde5ee;
  padding: 14px 16px;
  color: #34445a;
  font-size: 15px;
  line-height: 1.45;
  vertical-align: top;
}

.limo-compare-tab-panel .limo-detail-content-body th {
  background: #f3f7fb;
  color: #102033;
  font-weight: 750;
}

.home-card-actions a:last-child {
  padding-right: 22px;
}

body.dark[data-page="part-detail"] #partDetailAddCart,
body.dark[data-page="part-detail"] .vf-part-order .btn.ghost {
  border-color: rgba(132, 194, 255, .72);
  background: linear-gradient(135deg, #1e73be, #0b56a5);
  color: #fff;
  box-shadow: 0 18px 36px rgba(8, 90, 180, .26);
}

body.dark[data-page="part-detail"] #partDetailAddCart:hover,
body.dark[data-page="part-detail"] .vf-part-order .btn.ghost:hover {
  background: linear-gradient(135deg, #2d8cff, #1169ca);
  color: #fff;
}

body.dark.com-gio-hang .form-control,
body.dark.com-gio-hang .form-select,
body.dark.com-gio-hang .select2-selection,
body.dark.com-gio-hang .code-coupon {
  background: rgba(8, 20, 38, .92) !important;
  border-color: rgba(155, 215, 255, .28) !important;
  color: #f3f8ff !important;
}

body.dark.com-gio-hang .payments-label {
  background: rgba(10, 25, 48, .84);
  border-color: rgba(155, 215, 255, .18);
  color: #dbeafe !important;
}

body.dark.com-gio-hang .payments-copy strong,
body.dark.com-gio-hang .payments-copy span {
  color: #dbeafe;
}

body.dark.com-gio-hang .payments-label.active,
body.dark.com-gio-hang .payments-cart .form-check-input:checked + .payments-label {
  background: linear-gradient(135deg, #1e73be, #0b56a5);
  color: #fff !important;
}

body.dark .limo-spec-basic-grid > div,
body.dark .limo-spec-drawer-panel,
body.dark .limo-spec-drawer-panel > header,
body.dark .limo-compare-tab-nav button,
body.dark .limo-compare-tab-panel .limo-detail-content-body {
  border-color: rgba(155, 215, 255, .18);
  background: #0c1b30;
  color: #eaf4ff;
}

body.dark .limo-compare-tab-panel .limo-detail-content-body table {
  background: #0c1b30;
}

body.dark .limo-compare-tab-panel .limo-detail-content-body th,
body.dark .limo-compare-tab-panel .limo-detail-content-body td {
  border-color: rgba(155, 215, 255, .18);
  color: #dbeafe;
}

body.dark .limo-compare-tab-panel .limo-detail-content-body th {
  background: #132642;
  color: #f4f9ff;
}

body.dark .limo-spec-basic-grid strong,
body.dark .limo-spec-drawer-panel > header strong {
  color: #f4f9ff;
}

body.dark .limo-spec-basic-grid span,
body.dark .limo-compare-tab-nav button {
  color: #b8c9df;
}

body.dark .limo-spec-open,
body.dark .limo-spec-download {
  border-color: rgba(132, 194, 255, .72);
  background: rgba(8, 20, 38, .84);
  color: #d8ebff;
}

@media (max-width: 720px) {
  .limo-hero {
    height: 600px;
    min-height: 600px;
  }

  .limo-hero-car {
    top: 52px;
  }

  .limo-hero-swatches {
    top: 96px;
  }

  .limo-hero-specbar,
  .limo-hero-specbar.is-expanded {
    display: grid !important;
    grid-template-columns: 1fr;
    min-height: 118px;
    padding: 16px 18px 20px;
    clip-path: none;
  }

  .limo-hero-specbar .limo-spec {
    display: none;
  }

  .limo-price {
    grid-column: auto;
    order: 0;
  }

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

  .limo-price del {
    margin-top: 5px;
    font-size: 13px;
  }

  .limo-sticky-cta .limo-sticky-price {
    display: flex !important;
    align-items: center;
  }

  .limo-sticky-cta .limo-sticky-price del {
    font-size: 11px;
  }

  .limo-scroll-cue {
    bottom: 132px;
    width: 42px;
    height: 42px;
  }

  .limo-spec-basic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .limo-spec-basic-grid > div {
    min-height: 82px;
    padding: 10px 8px;
  }

  .limo-spec-basic-grid strong {
    font-size: 17px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .limo-spec-basic-grid span {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.25;
  }

  .limo-spec-action-row {
    align-items: stretch;
  }

  .limo-spec-open,
  .limo-spec-download {
    width: 100%;
    min-height: 48px;
  }

  .limo-spec-drawer-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 22px);
    padding: 18px 12px;
  }

  .limo-spec-drawer-panel > header {
    top: -18px;
    margin: -18px -12px 14px;
    padding: 14px 12px;
  }

  .home-card-actions a:last-child {
    padding-right: 26px;
  }
}



.toolbar2 {width: 100%;bottom: 0px;position: fixed;z-index: 500;left: 0px;display: none;-webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));-moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));-ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));-o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));}
.toolbar2.is-active .list-phone { display: block; -webkit-animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards; animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards; }
.toolbar2 .list-phone {position: absolute;bottom: 100%;left: 30px;opacity: 0;transform: scale(0);transform-origin: 50% 100%;display: none;}
.toolbar2 .list-phone a {display: flex;flex-wrap: wrap;align-items: center;justify-content: space-between;background: #fff;max-width: 240px;padding: 10px 20px;margin: 10px 0;border-radius: 50px;padding-right: 30px;text-decoration: none;}
.toolbar2 .list-phone svg {max-width: 30px;max-height: 30px;}
.toolbar2 .list-phone span {display: block;width: calc(100% - 40px);color: var(--background-static);font-weight: 700;font-size: 18px;}
.toolbar2 .phone { position: relative; width: 50px; height: 50px; z-index: 99; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; margin: 0 0px -25px 30px; transition: transform .2s ease-in-out; }
.toolbar2 .phone a { color: #333; display: block; position: relative; }
.toolbar2 .phone a:before, .toolbar2 .phone a:after { position: absolute; content: ''; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(135deg); width: 30px; height: 3px; border-radius: 2rem; background-color: var(--color-main); opacity: 0; transition: opacity .2s ease-in-out; }
.toolbar2 .phone a:after { transform: translate(-50%, -50%) rotate(45deg); }
.toolbar2 .phone svg { max-width: 27px; max-height: 27px; display: block; position: relative; fill: var(--color-main); }
.toolbar2.is-active .phone { transform: rotate(-180deg); }
.toolbar2.is-active .phone svg { opacity: 0; }
.toolbar2.is-active .phone a:before, .toolbar2.is-active .phone a:after { opacity: 1; }
.toolbar2 ul {list-style: none;display: flex;align-items: center;justify-content: space-between;/* padding: 0px; *//* margin: 0px; */--size: 33px;-webkit-mask: radial-gradient(var(--size) at 55px 0px, #0000 99%, #fff 101%) 100%;background: #fff;padding: 10px 0 !important;padding-left: 100px !important;border-radius: 10px 10px 0px 0px;}
.toolbar2 ul li { text-align: center; width: 25%; line-height: 1; }
.toolbar2 ul li a { display: block; width: 100%; font-size: 27px; color: #ffff; }
.toolbar2 ul li .icon { position: relative; margin: 0 auto; text-align: center; }
.toolbar2 ul li a span { display: none; font-weight: 400; font-size: 11px; margin-top: 5px; color: #333; text-transform: capitalize; }
.toolbar2 ul li a img, .toolbar2 ul li svg { max-height: 30px; fill: var(--color-main); width: 100%; }
.toolbar2 .phone svg { animation: tada 1.2s infinite; fill: var(--color-main); }
.tada { animation: tada 1.2s infinite; }
.lang-toolbar { display: flex; justify-content: center; align-items: center; }
.toolbar2 ul li.lang-toolbar a { display: inline-block; width: unset; margin: 0px 2px; font-size: unset; }
.toolbar2 ul li.lang-toolbar a img { height: 10% !important; }
.ex6 path { fill: none; stroke: var(--color-main); stroke-width: 0.5; stroke-dasharray: 1500; stroke-dashoffset: 1500; -webkit-animation: dash 5s ease forwards; animation: dash 5s ease forwards; }
@-webkit-keyframes dash {
to { fill: var(--color-main); stroke-dashoffset: 0; }
}
@keyframes dash {
to { fill: var(--color-main); stroke-dashoffset: 0; }
}
@keyframes tada {
0% { transform: scaleX(1) }
10%, 20% { transform: scale3d(.9, .9, .9) rotate(-3deg) }
30%, 50%, 70%, 90% { transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); }
40%, 60%, 80% { transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); }
to { transform: scaleX(1) }
}
@keyframes quickShow {
0% { opacity: 0; transform: scale(0); }
100% { opacity: 1; transform: scale(1); }
}
@media(max-width:1001px) {
.toolbar2 { display: block; }
.scrollToTop, #messages-facebook {/* display: none !important; */}
}

@media (max-width: 1024px) {
  .grecaptcha-badge{opacity: 0}
}
.floating-contact{display: none}