:root { --text-color: #1A1A1A; --primary-color: #EB0A1E; } 

.primary-color { color: var(--primary-color) !important; } 

.text-title { font-size: 36px; font-weight: 400; line-height: 44px; text-transform: uppercase; } 

html { scroll-behavior: smooth; }
/* Guard against rogue fixed/absolute elements causing horizontal scroll on mobile. */
html, body { overflow-x: clip; }

/* Hide scrollbar while keeping scroll capability — used for horizontal tab bars. */
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ===== Mobile menu ===== */
.mobile-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #101010;
}
.mobile-menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.mobile-menu-toggle.is-open .mobile-menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open .mobile-menu-toggle__bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open .mobile-menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 60;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu__topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 2px solid #EB0A1E;
}
.mobile-menu__logo { height: 48px; width: auto; }
.mobile-menu__close {
  width: 40px; height: 40px;
  background: transparent; border: 0; cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.mobile-menu__close span {
  position: absolute; top: 50%; left: 50%;
  width: 22px; height: 2px; background: #101010;
  transform-origin: center;
}
.mobile-menu__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-menu__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.mobile-menu__item { border-bottom: 1px solid #f1f1f1; }
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #101010;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .02em;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.mobile-menu__link:hover,
.mobile-menu__link:active { background: #f8f8f8; color: #EB0A1E; }

.mobile-menu__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .22s ease;
  margin-left: 12px;
  flex-shrink: 0;
}
.mobile-menu__item--has-children.is-expanded .mobile-menu__chevron { transform: rotate(45deg); }

.mobile-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.mobile-menu__item--has-children.is-expanded .mobile-menu__submenu { max-height: 800px; }

.mobile-menu__sublink {
  display: block;
  padding: 14px 24px 14px 44px;
  font-size: 14px;
  color: #3A3A3A;
  text-decoration: none;
  border-bottom: 1px solid #ececec;
}
.mobile-menu__sublink:hover,
.mobile-menu__sublink:active { background: #fff; color: #EB0A1E; }

body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

a.tool-item + a.tool-item { margin: 0; } 

input:focus { outline: none; } 

.text { font-size: 15px; color: var(--text-color); } 

body { font-family: 'Toyota Type'; margin: 0; } 

.mb-32 { margin-bottom: 32px !important; } 

.mt-32 { margin-top: 32px !important; } 

.mb-64 { margin-bottom: 64px !important; } 

#back-to-top { width: 40px; height: 40px; background-color: #EB0A1E; display: inline-flex; justify-content: center; align-items: center; position: fixed; bottom: 80px; right: 32px; font-size: 16px; line-height: 16px; color: #FFFFFF; transition: background-color .3s, opacity .5s, visibility .5s; opacity: 0; visibility: hidden; z-index: 1000; text-decoration: none; cursor: pointer; } 

 #back-to-top.show { opacity: 1; visibility: visible; } 

.loading-icon { -webkit-animation: spin 2s linear infinite; animation: spin 1.5s linear infinite; text-align: center; /* width: 100%; */ } 

@keyframes spin { 
 0% { transform: rotate(0deg); } 

 100% { transform: rotate(360deg); } 
 }

.tool-mobile { display: none; } 

.tool { position: fixed; z-index: 50; right: 0; top: 50%; color: #1A1A1A; width: 48px; transform: translateY(-60%); } 

 .tool .tool-item { background-color: #ffffff; width: 48px; height: 48px; border: 1px solid #cccccc; display: flex; justify-content: left; align-items: center; transition: width 0.5s; padding-left: 12px; float: right; overflow: hidden; position: relative; } 

 .tool .tool-item img { width: auto; } 

 .tool .tool-item:hover span { left: 30px; } 

 .tool .tool-list { background-color: #ffffff; width: 48px; height: 48px; border: 1px solid #cccccc; display: flex; justify-content: center; align-items: center; float: right; font-size: 20px; color: #1a1a1a; cursor: pointer; } 

.tool-item:hover { width: 260px; transition: width 1s; } 

.tool .tool-item > span { margin-left: 20px; color: #1A1A1A; /* text-overflow: ellipsis; */
 position: absolute; right: 100%; width: max-content; } 

.tool-list-contain { list-style-type: none; padding: 0; margin: 0; height: 0; opacity: 0; visibility: hidden; transition: all 0.5s ease 0s; } 

 .tool-list-contain.show { height: auto; opacity: 1; visibility: visible; } 

 .tool-list-contain .tool-list-item { min-width: 3rem; display: table; margin-right: auto; cursor: pointer; font-size: 1rem; background-color: #fff; padding-right: 16px; /* padding: 10px 10px 10px 0px; */
 box-shadow: inset 0px 0px 1px 1px rgb(192 192 192 / 30%); transition: all 0.5s ease 0s; } 

 .tool-list-contain .tool-list-item:hover { /* transform: translateX(0); */
 transform: translateX(calc(-100% + 1.5rem + 24px)); } 

 .tool-list-contain .tool-list-item .item-contain { height: 48px; display: flex; align-items: center; } 

 .tool-list-contain .tool-list-item .item-contain .item-image { width: 48px; display: flex; justify-content: center; align-items: center; } 

 .tool-list-contain .tool-list-item .item-contain .item-image img { max-width: 100%; max-height: 100%; display: block; margin: 0 auto; } 

 .tool-list-contain .tool-list-item .item-contain .item-title { font-size: 16px; line-height: 23px; color: #1A1A1A; white-space: nowrap; } 

 .tool-list-contain .tool-list-item:hover .item-contain .item-title { color: #EB0A1E; } 

 .tool-list-contain .tool-list-item a { display: flex; align-items: center; } 

@media(max-width:1160px){
 .tool { display: none; } 

 .tool-mobile { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; } 

 .tool-mobile .tool-item { width: 100%; height: 40px; border: 1px solid #cccccc; display: flex; padding: 8px; align-items: center; color: #000; justify-content: left; } 

 .tool-mobile .tool-description { width: calc(100% - 24px); height: 40px; border-bottom: 1px solid #cccccc; display: flex; align-items: center; justify-content: left; color: #1A1A1A; margin-left: 5px; } 

 .tool-mobile .tool-description span:not(span:nth-child(1)) { display: none; } 
 .tool-item > span { min-width: 25px; } 
 }

@media(max-width: 1080px){
 #back-to-top { bottom: 60px; right: 4px; width: 32px; height: 32px; font-size: 12px; line-height: 12px; align-items: center; } 
 }
@media(max-width: 768px) { /* .tool-mobile { position: fixed; bottom: 255px; background-color: #FFFFFF; max-width: 100%; z-index: 999; right: 5px; display: flex; flex-direction: column; left: unset; width: unset; min-width: 185px; visibility: hidden; opacity: 0; transition: all linear .3s; } */
 .tool-mobile.active { opacity:1; visibility:unset; transition: all linear .3s; } 
 }

.bg-icon_global { display: block; margin-right: 4px; width: 23px; height: 23px; background: url('../../Images/global-image/global-image.png') -54px -295px; } 
 .bg-icon_instagram { display: block; width: 24px; height: 24px; background: url('../../Images/global-image/global-image.png') -144px -219px; } 
 .bg-icon_play_technology { display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 93px; height: 92px; background: url('../../Images/global-image/global-image.png') -10px -107px; } 
 .bg-icon_play_technology_mobile { display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; background: url('../../Images/global-image/global-image.png') -123px -107px; } 
 .bg-icon_tiktok { display: block; width: 24px; height: 24px; background: url('../../Images/global-image/global-image.png') -188px -219px; } 
 .bg-logo_toyota { display: block; width: 81px; height: 65px; background: url('../../Images/global-image/global-image.png') -312px -112px; } 
 .bg-logo_toyota_mobile { display: block; width: 70px; height: 56px; background: url('../../Images/global-image/global-image.png') -10px -219px; } 
 .bg-icon_prev_vehicle { display: block; width: 8px; height: 14px; background: url('../../Images/global-image/global-image.png') -123px -183px; } 
 .bg-icon_price { display: block; width: 18px; height: 24px; background: url('../../Images/global-image/global-image.png') -51px -339px; } 
 .bg-icon_service { display: block; width: 24px; height: 24px; background: url('../../Images/global-image/global-image.png') -232px -219px; } 
 .bg-icon_youtube { display: block; width: 24px; height: 24px; background: url('../../Images/global-image/global-image.png') -276px -219px; } 
 .bg-icon_zalo { display: block; width: 24px; height: 24px; background: url('../../Images/global-image/global-image.png?v=1') -320px -219px; } 
 .bg-khuyen_mai_image { display: block; width: 64px; height: 64px; /* background: url('../../Images/global-image/global-image.png') -210px -10px; */
 background: url('../../Images/home-page/cta/lsicon_badge-promotion-outline.png') center/contain no-repeat; } 

 .bg-bang_gia_image { display: block; width: 64px; height: 64px; /* background: url('../../Images/global-image/global-image.png') -210px -112px; */
 background: url('../../Images/home-page/cta/lsicon_deal-outline.png') center/contain no-repeat; } 
 .bg-du_toan_bao_hiem_image { display: block; width: 64px; height: 64px; /* background: url('../../Images/global-image/icon-du-toan-chi-phi-bao-hiem.png') center/contain no-repeat; */
 background: url('../../Images/home-page/cta/location.png') center/contain no-repeat; } 
 .bg-bo_cong_thuong { display: block; width: 180px; height: 77px; background: url('../../Images/global-image/global-image.png') -10px -10px; } 
 .bg-dang_ki_lai_thu_image { display: block; width: 64px; height: 64px; /* background: url('../../Images/global-image/global-image.png') -312px -10px; */
 background: url('../../Images/home-page/cta/ph_steering-wheel-thin.png') center/contain no-repeat; } 
 .bg-icon_calculate { display: block; width: 21px; height: 24px; background: url('../../Images/global-image/global-image.png') -10px -339px; } 
 .bg-icon_chat { display: block; width: 24px; height: 25px; background: url('../../Images/global-image/global-image.png') -100px -219px; } 
 .bg-icon_compare { display: block; width: 17px; height: 24px; background: url('../../Images/global-image/global-image.png') -89px -339px; } 
 .bg-icon_dowload { display: block; width: 17px; height: 24px; background: url('../../Images/global-image/global-image.png') -126px -339px; } 
 .bg-icon_drive { display: block; width: 24px; height: 24px; background: url('../../Images/global-image/global-image.png') -364px -219px; } 
.bg-icon_facebook { display: block; width: 24px; height: 24px; background: url('../../Images/global-image/global-image.png') -10px -295px; } 

.header-list-item.center-item { display:flex !important; align-items: center !important; } 
.cta-mobile-icon { position: fixed; bottom: 175px; right: 20px; z-index: 10; max-width: 60px; cursor: pointer; display: none; } 
 .cta-mobile-icon::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; box-shadow: 0px 0px 5px 1px rgba(0,0,0,.5); } 

.header-block-2 .header-list .header-list-item:nth-child(2),.header-block-2 .header-list .header-list-item:nth-child(3),.header-block-2 .header-list .header-list-item:nth-child(2),.header-block-2 .header-list .header-list-item:nth-child(4),.header-block-2 .header-list .header-list-item:nth-child(5) { position: relative; padding-left: 30px; } 
.header-block-2 .header-list .header-list-item:nth-child(2)::before { content:""; position: absolute; z-index: 2; pointer-events: none; left: 0; top: 50%; background: url(../../Images/home-page/header/find.png) center / contain no-repeat; transform: translateY(-50%); width: 24px; height: 24px; } 
.header-block-2 .header-list .header-list-item:nth-child(3)::before { content:""; position: absolute; z-index: 2; pointer-events: none; left: 0; top: 50%; background: url(../../Images/home-page/header/lsicon_deal-outline.png) center / contain no-repeat; transform: translateY(-50%); width: 24px; height: 24px; } 
.header-block-2 .header-list .header-list-item:nth-child(4)::before { content:""; position: absolute; z-index: 2; pointer-events: none; left: 0; top: 50%; background: url(../../Images/home-page/header/ph_steering-wheel.png) center / contain no-repeat; transform: translateY(-50%); width: 24px; height: 24px; } 
.header-block-2 .header-list .header-list-item:nth-child(5)::before { content:""; position: absolute; z-index: 2; pointer-events: none; left: 0; top: 50%; background: url(../../Images/home-page/header/location.png) center / contain no-repeat; transform: translateY(-50%); width: 24px; height: 24px; } 




@media (max-width:768px){
 .cta-mobile-icon { display:block; } 
 /* .tool-mobile { display: none; } */
.footer-sticky-toolbar { background-color: hsla(0, 0%, 100%, .925); border-top: 1px solid #eb0a1e; -webkit-box-align: center; -ms-flex-align: center; align-items: center; display: -webkit-box; display: -ms-flexbox; display: flex; bottom: 0; height: 75px; left: 0; overflow: hidden; position: fixed; text-align: center; visibility: visible; width: 100vw; z-index: 100; -webkit-backdrop-filter: blur(.25em); backdrop-filter: blur(.25em); background-color: hsla(0, 0%, 100%, .75); -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition: opacity .3s, -webkit-transform .3s; transition: opacity .3s, -webkit-transform .3s; transition: opacity .3s, transform .3s; transition: opacity .3s, transform .3s, -webkit-transform .3s; will-change: opacity, transform; } 
.footer-sticky-toolbar.headerlogo { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } 
.footer-sticky-toolbar.tool-mobile .tool-item { width: calc(100% / 3); border: none; justify-content: center; flex-direction: column; height: 75px; padding: 0; } 
.footer-sticky-toolbar.tool-mobile .tool-description { width: 100%; border: none; justify-content: center; margin: 0px 0 0 0; height: auto; } 
.footer-sticky-toolbar.tool-mobile .tool-item > span { min-width: unset; } 
 }
@media (max-width:480px){
 .footer-sticky-toolbar.tool-mobile .tool-description { font-size: 14px; } 
 }