/*
Theme Name: Toyota Libya
Theme URI: https://toyota.ly
Author: Toyota
Author URI: https://example.com
Description: Custom WordPress theme for Toyota Libya. Built with Tailwind CSS and Vite.
Version: 1.0.0
Text Domain: toyota-libya
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*
This file is for WordPress theme metadata.
Actual styles are located in assets/css/main.css and compiled to dist/
*/

/* Prevent horizontal scroll when mega menu is open */
html.overflow-hidden {
  overflow-x: hidden;
}
html {
  scroll-behavior: auto !important;
}
/* =============================================================================
   MEGA MENU
   ============================================================================= */

/* CSS variable for dynamic header height set via JS */
:root {
  --mega-menu-top: 72px;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #e60021;
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
  background-color: #f6f6f6;
}

/* ---- Backdrop click-target ---- */
.mega-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  /* z-index: 1040; */
  background: transparent;
  cursor: auto;
}
.mega-menu-backdrop.is-active {
  display: block;
}

/* ---- Base panel ---- */
.mega-menu {
  position: fixed;
  top: var(--mega-menu-top);
  left: 0;
  width: 100%;
  z-index: 1;
  background: #ffffff;
  border-top: 1px solid #dce0e4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
  transform: translateY(-6px);
}
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* Vehicles: strict 100vh (minus header) */
.mega-menu--vehicles {
  height: calc(100vh - var(--mega-menu-top));
  overflow: hidden;
}

/* Simple (Ownership / Discover): content-driven height */
.mega-menu--simple {
  height: auto;
}

/* ---- Inner wrapper ---- */
.mega-menu__inner {
  height: 100%;
}

/* ====================================================
   VEHICLES LAYOUT
   ==================================================== */

.mega-menu__vehicles-layout {
  display: flex;
  gap: 30px;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Left sidebar */
.mega-menu__sidebar {
  flex-shrink: 0;
  width: 256px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  align-self: flex-start;
  max-height: 100%;
}

/* Sidebar button */
.mega-menu__sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 10px;
  font-family: "Univers", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  background: #ffffff;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  outline: none;
}
.mega-menu__sidebar-btn:hover {
  background: #f0f2f4;
  color: #000000;
  text-decoration: none;
}
.mega-menu__sidebar-btn.is-active {
  background: #e60021;
  color: #ffffff;
}
.mega-menu__sidebar-btn:focus-visible {
  outline: 2px solid #e60021;
  outline-offset: 2px;
}
.mega-menu__sidebar-btn-text {
  flex: 1;
  text-align: left;
}
.mega-menu__sidebar-btn-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: currentColor;
}

/* Right vehicle cards grid */
.mega-menu__vehicles-grid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-y: auto;
  align-content: flex-start;
  padding-bottom: 16px;
}

/* Single vehicle card */
.mega-menu__vehicle-card {
  width: calc(33.333% - 7px);
  height: 340px;
  border-radius: 12px;
  position: relative;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  overflow: hidden;
  background: #ffffff;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  text-decoration: none;
}
.mega-menu__vehicle-card:hover {
  border: 1px solid #dce0e4;
}

/* Card image */
.mega-menu__vehicle-card-img-wrap {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 190px;
  pointer-events: none;
}
.mega-menu__vehicle-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

/* Card footer (name + button) */
.mega-menu__vehicle-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.mega-menu__vehicle-card-name {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  margin: 0;
  text-align: center;
}

/* Explore button */
.mega-menu__vehicle-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 178px;
  padding: 0 24px;
  border-radius: 100px;
  background: #f0f2f4;
  color: #000;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: 0.5s all ease;
}
.mega-menu__vehicle-card-btn:hover {
  color: #fff;
  text-decoration: none;
  background: #e60021;
}
.mega-menu__vehicle-card-btn--featured {
  background: #e60021;
  color: #ffffff;
}
.mega-menu__vehicle-card-btn--featured:hover {
  background: #c90020;
  color: #ffffff;
}

/* Hidden cards (filtered out by JS) */
.mega-menu__vehicle-card[data-hidden] {
  display: none;
}

/* ====================================================
   SIMPLE MEGA MENU (Ownership / Discover)
   ==================================================== */

.mega-menu--simple .mega-menu__inner {
  padding: 30px 0;
}

.mega-menu__columns {
  display: flex;
  gap: 160px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.mega-menu__column {
  flex-shrink: 0;
}

.mega-menu__column-heading {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 20px;
}

.mega-menu__column-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1;
}

.mega-menu__column-link {
  font-family: "Univers";
  text-decoration: none;
  transition: color 0.18s ease;
  font-size: 14px;
  line-height: 20px;
  color: #4a4a4a;
  font-weight: 300;
}
.mega-menu__column-link:hover,
.mega-menu__column-links li.is-active a {
  color: #e60021;
  text-decoration: none;
}

/* ====================================================
   RTL OVERRIDES
   ==================================================== */

[dir="rtl"] .mega-menu__sidebar-btn-text {
  text-align: right;
}
[dir="rtl"] .mega-menu__sidebar-btn-arrow {
  transform: scaleX(-1);
}
[dir="rtl"] .mega-menu__sidebar-btn.is-active .mega-menu__sidebar-btn-arrow,
[dir="rtl"] .mega-menu__sidebar-btn:hover .mega-menu__sidebar-btn-arrow {
  transform: scaleX(-1);
}

[dir="rtl"] .mega-menu__column-heading,
[dir="rtl"] .mega-menu__column-link {
  text-align: right;
}
[dir="rtl"] .mega-menu__vehicle-card-name {
  text-align: center;
}

/* =============================================================================
   DYNAMIC ACF-DRIVEN MAIN NAVIGATION (click-only toggle)
   ============================================================================= */

/* CSS variable: updated by inline JS to reflect dynMainNav bottom offset */
/* :root {
  --dyn-nav-top: 70px;
} */

/* ---- Nav wrapper ---- */
.dyn-nav {
  width: 100%;
}

.dyn-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}

/* ---- Nav items ---- */
.dyn-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

/* ---- Parent link always a normal link ---- */
.dyn-nav__link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #425368;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  line-height: 1;
}

/* No dropdown? give the link full right-padding */
.dyn-nav__item:not(.has-dynpanel) > .dyn-nav__link {
  padding-right: 22px;
}

.dyn-nav__link:hover,
li.dyn-nav__item.has-dynpanel.is-active a {
  color: #eb0a1e;
  text-decoration: none;
}

/* ---- Arrow toggle button (separate from link) ---- */
.dyn-nav__arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 20px; */
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  color: #425368;
  cursor: pointer;
  border-radius: 4px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  flex-shrink: 0;
}
button.dyn-nav__arrow-btn {
  padding-left: 5px;
}
.dyn-nav__item:hover a,
.dyn-nav__item:hover button,
.dyn-nav__arrow-btn:hover,
.dyn-nav__arrow-btn:focus-visible,
li.dyn-nav__item.has-dynpanel.is-active .dyn-nav__arrow-btn {
  /* background: #f0f2f4; */
  color: #eb0a1e;
}
.dyn-nav__item.is-open > .dyn-nav__arrow-btn {
  color: #eb0a1e;
}
.dyn-nav__arrow-btn:focus-visible {
  outline: 2px solid #eb0a1e;
  outline-offset: 1px;
}

/* ---- Chevron arrow inside the button ---- */
.dyn-nav-arrow {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rotate arrow when panel is open */
.dyn-nav__item.is-open .dyn-nav-arrow {
  transform: rotate(180deg);
}

/* ---- Active indicator bar under item when open ---- */
.dyn-nav__item.is-open > .dyn-nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 22px;
  height: 2px;
  background: #eb0a1e;
  width: 100%;
}

/* Active link text colour when open */
.dyn-nav__item.is-open > .dyn-nav__link {
  color: #eb0a1e;
}

/* ---- Dynamic column panels (dyn-drop--auto) ---- */
.dyn-panel.dyn-drop--auto {
  height: auto;
  max-height: none;
}

/* ---- Dynamic full-height panels (dyn-drop--fullheight) ---- */
.dyn-panel.dyn-drop--fullheight {
  max-height: calc(100vh - var(--mega-menu-top, 70px));
  overflow-y: auto;
}

/* ---- Panel positioning ---- */

/* ====================================================
   RTL overrides for dynamic nav
   ==================================================== */
[dir="rtl"] .dyn-nav__link {
  /* padding: 18px 22px 18px 8px; */
}

[dir="rtl"] .dyn-nav__item:not(.has-dynpanel) > .dyn-nav__link {
  padding-left: 22px;
}

[dir="rtl"] .dyn-nav-arrow {
  transform: scaleX(-1);
}

[dir="rtl"] .dyn-nav__item.is-open .dyn-nav-arrow {
  transform: scaleX(-1) rotate(180deg);
}

[dir="rtl"] .dyn-nav__item.is-open > .dyn-nav__link::after {
  left: 22px;
  right: 0;
}

/* --- Overlay backdrop --- */
.flyout-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.flyout-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* --- Drawer panel --- */
.flyout-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 12;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: 0.5s all ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.flyout-drawer.is-open {
  transform: translateX(0);
}

/* RTL slide from left */
[dir="rtl"] .flyout-drawer {
  right: auto;
  left: 0;
  transform: translateX(-105%);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}

[dir="rtl"] .flyout-drawer.is-open {
  transform: translateX(0);
}

/* Body scroll lock */
body.flyout-open {
  overflow: hidden;
}

/* --- Drawer header row --- */
.flyout-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #ebebeb;
  flex-shrink: 0;
  background: #fff;
}

.flyout-drawer__logo {
  display: block;
  line-height: 0;
}

.flyout-drawer__logo img {
  height: 50px;
  width: auto;
}

/* Close (X) button */
.flyout-close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0;
  color: #111;
  flex-shrink: 0;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.flyout-close:hover {
  background-color: #f5f5f5;
  color: var(--toyota-red);
}

.flyout-close:focus-visible {
  outline: 2px solid var(--toyota-red);
  outline-offset: 2px;
}

/* --- Hamburger bar styling --- */
.flyout-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: none;
}

.flyout-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #111;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* --- Scrollable nav area --- */
.flyout-drawer__nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 40px;
}

.flyout-drawer__nav::-webkit-scrollbar {
  width: 4px;
}

.flyout-drawer__nav::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

/* --- Nav list --- */
.flyout-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flyout-nav__item {
  border-bottom: 1px solid #f0f0f0;
}

/* Simple link (no dropdown) */
.flyout-nav__link {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  font-family: "Univers", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #111;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.flyout-nav__link:hover {
  color: var(--toyota-red);
  background-color: #fafafa;
}

/* --- Row layout for items with sub-panel (link text + arrow trigger) --- */
.flyout-nav__row {
  display: flex;
  align-items: stretch;
  border-bottom: 0; /* border lives on .flyout-nav__item */
}

/* Link inside a row fills available width */
.flyout-nav__row .flyout-nav__link {
  flex: 1;
  border-bottom: none;
}

/* Arrow-only trigger button */
.flyout-nav__panel-trigger {
  flex-shrink: 0;
  width: 52px;
  border: none;
  border-left: 1px solid #f0f0f0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

[dir="rtl"] .flyout-nav__panel-trigger {
  border-left: none;
  border-right: 1px solid #f0f0f0;
}

.flyout-nav__panel-trigger:hover {
  background-color: #fafafa;
  color: var(--toyota-red);
}

.flyout-nav__panel-trigger[aria-expanded="true"] {
  color: var(--toyota-red);
}

.flyout-nav__panel-trigger:focus-visible {
  outline: 2px solid var(--toyota-red);
  outline-offset: -2px;
}

/* Chevron icon inside panel trigger (points right in LTR) */
.flyout-nav__chevron {
  flex-shrink: 0;
  display: block;
  transition: color 0.2s ease;
}

[dir="rtl"] .flyout-nav__chevron {
  transform: scaleX(-1); /* flip to point left in RTL */
}

/* --- Full-height flyout sub-panel --- */

.flyout-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 20;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: 0.5s all ease;
  opacity: 0;
}

.flyout-panel.is-open {
  visibility: visible;
  pointer-events: auto;
  /* visibility delay removed on open so the panel is interactive immediately */
  opacity: 1;
}

/* RTL panel slides in from the left */
[dir="rtl"] .flyout-panel {
  /* transform: translateX(-100%); */
}

[dir="rtl"] .flyout-panel.is-open {
  /* transform: translateX(0); */
}

/* Panel header: back button + title */
.flyout-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid #ebebeb;
  flex-shrink: 0;
  background: #fff;
  min-height: 62px;
}

/* Back button */
.flyout-panel__back {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px 8px 6px 4px;
  border-radius: 6px;
  font-family: "Univers", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
  flex-shrink: 0;
}

.flyout-panel__back:hover {
  color: var(--toyota-red);
  background-color: #f5f5f5;
}

.flyout-panel__back:focus-visible {
  outline: 2px solid var(--toyota-red);
  outline-offset: 2px;
}

[dir="rtl"] .flyout-panel__back svg {
  transform: scaleX(-1); /* flip arrow to point right in RTL */
}

/* Panel title */
.flyout-panel__title {
  flex: 1;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #111;
  text-align: center;
  padding-right: 44px; /* balance the back button width so title appears centred */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[dir="rtl"] .flyout-panel__title {
  text-align: center;
  padding-right: 0;
  padding-left: 44px;
}

/* Scrollable body */
.flyout-panel__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.flyout-panel__body::-webkit-scrollbar {
  width: 4px;
}

.flyout-panel__body::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

/* --- Submenu accordion panel (removed, kept for legacy safety) --- */
.flyout-submenu {
  display: none;
}

/* --- Nested (level 2) flyout panels inside a parent panel --- */
.flyout-panel--nested {
  z-index: 30; /* above parent panel (z-index:20) */
}

/* Vehicle list inside a panel body reuses .flyout-nav__list but needs no extra padding */
.flyout-vehicles-list {
  padding-top: 0;
}

/* --- Columns layout (e.g. Ownership / Discover) --- */
.flyout-columns {
  padding: 16px 20px 20px;
  background-color: #f8f8f8;
}

.flyout-column {
  padding-bottom: 20px;
}

.flyout-column:last-child {
  padding-bottom: 4px;
}

.flyout-column__heading {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 10px;
  display: inline-block;
}

.flyout-column__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.flyout-column__links li:not(:last-child) {
  padding-bottom: 15px;
}
.flyout-column__link {
  display: block;
  font-family: "Univers", sans-serif;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.flyout-column__link:hover {
  color: var(--toyota-red);
  padding-left: 6px;
}

[dir="rtl"] .flyout-column__link:hover {
  padding-left: 0;
  padding-right: 6px;
}

/* --- Vehicles layout --- */
.flyout-vehicles {
  background-color: #f8f8f8;
  padding-bottom: 16px;
}

/* Scrollable tab strip */
.flyout-vehicles__tabs {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid #ebebeb;
  scrollbar-width: none;
}

.flyout-vehicles__tabs::-webkit-scrollbar {
  display: none;
}

.flyout-vehicles__tab-btn {
  flex-shrink: 0;
  padding: 6px 16px;
  border: 1px solid #dce0e4;
  border-radius: 20px;
  font-family: "Univers", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.flyout-vehicles__tab-btn.is-active,
.flyout-vehicles__tab-btn:hover {
  background-color: var(--toyota-red);
  border-color: var(--toyota-red);
  color: #fff;
}

/* 2-column card grid */
.flyout-vehicles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 20px;
}

/* Single vehicle card */
.flyout-vehicle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  text-align: center;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.flyout-vehicle-card[data-flyout-hidden] {
  display: none;
}

.flyout-vehicle-card:hover {
  border: 1px solid #dce0e4;
}

.flyout-vehicle-card__img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}

.flyout-vehicle-card__name {
  font-family: "Univers", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.3;
  width: 100%;
}

.flyout-vehicle-card__btn {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0px 30px;
  border-radius: 100px;
  font-family: "Univers", sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  background: #f0f2f4;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.flyout-vehicle-card__btn:hover,
.flyout-vehicle-card__btn--featured {
  background-color: var(--toyota-red);
  color: #fff;
}

/* ==========================================================
   About Us
   ========================================================== */
.section-title {
  text-transform: none;
}
.about-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #111;
}

/* Background image */
.about-banner__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.about-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Dark gradient overlay  */
.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

/* Inner content wrapper */
.about-banner__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Heading */
.about-banner__heading {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: normal;
  color: #ffffff;
  margin: 0 0 18px 0;
}

/* Red underline accent */
.about-banner__underline {
  width: 154px;
  height: 5px;
  background-color: var(--toyota-red);
  border-radius: 2px;
}

/* Logo column  */
.about-banner__logo-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 4px;
}

.about-banner__logo {
  width: 134px;
  height: auto;
  display: block;
}

/* ==========================================================
   About Us )
   ========================================================== */

.ceo-section {
  position: relative;
  background-color: #ffffff;
  padding: 100px 0 0px;
  overflow: hidden;
}

/* Decorative TOYOTA watermark */
.ceo-toyota-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  transform: rotate(90deg);
  right: -270px;
  bottom: 240px;
  width: 651px;
  height: 154px;
}

.ceo-toyota-watermark-text {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 154px;
  color: #000000;
  opacity: 0.05;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transform: rotate(90deg);
  transform-origin: center center;
}

/* Background watermark car image */
.ceo-bg-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 960px;
  height: 740px;
  pointer-events: none;
}

.ceo-bg-watermark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

/* CEO content row */
.ceo-content-row {
  position: relative;
  z-index: 2;
  align-items: flex-start;
}

/* Photo column */
.ceo-photo-col {
  position: relative;
}

.ceo-photo-wrapper {
  position: relative;
  min-height: 650px;
}

/* Red diagonal shape behind photo */
.ceo-red-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 97%;
  background-color: var(--toyota-red);
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0 100%);
  z-index: 1;
}

/* CEO photo */
.ceo-photo {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 90%;
  max-width: 609px;
  height: auto;
  z-index: 2;
  object-fit: contain;
  object-position: bottom center;
}

/* Text column */
.ceo-text-col {
  position: relative;
  z-index: 2;
  padding-left: 40px;
}

/* CEO name  */
.ceo-name {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  color: var(--toyota-red);
  margin: 0 0 8px 0;
}

/* CEO role */
.ceo-role {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #000000;
  margin: 0 0 30px 0;
}

/* CEO message */
.ceo-message p {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  max-width: 656px;
}

.ceo-message p {
  margin: 0 0 15px 0;
}

.ceo-message p:last-child {
  margin-bottom: 0;
}

/* Signature  */
.ceo-signature {
  margin: 0;
  margin-top: 20px;
  font-family: "Dancing Script", cursive !important;
  font-weight: 400;
  font-size: 52.717px;
  line-height: 88px;
  color: #000000;
  white-space: nowrap;
}

/* =============================================================================
   About Us 
   ============================================================================= */

.distributor-section {
  position: relative;
  background-color: #000000;
  min-height: 810px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* Right-side image (Node 561:2070) */
.distributor-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 1191px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.distributor-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Red decorative shape */
.distributor-red-shape {
  position: absolute;
  left: 0;
  top: 45px;
  width: 462px;
  height: 296px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.distributor-red-shape img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Content inner */
.distributor-inner {
  position: relative;
  z-index: 2;
}

/* Heading + underline (Node 561:2063) */
.distributor-heading-wrap {
  margin-bottom: 32px;
}

.distributor-heading {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px;
  text-transform: none;
}

.distributor-underline {
  width: 154px;
  height: 5px;
  background-color: var(--toyota-red);
  margin: 0; /* left-aligned, not centered */
}

/* Body text (Node 561:2060) */
.distributor-body {
  max-width: 905px;
}

.distributor-body p,
.distributor-body {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
}

.distributor-body p + p {
  margin-top: 24px;
}

/* =============================================================================
   About Us 
   ============================================================================= */

.vision-section {
  background-color: #ffffff;
  padding: 100px 0 100px;
}

/* Slider wrapper */
.vision-slider {
  margin-top: 70px; /* Figma gap-[70px] from section title */
}

.vision-slider .slick-list {
  border-radius: 20px;
  overflow: hidden;
}

/* Individual slide */
.vision-slide {
  outline: none;
}

/* Left: dark text panel (Node 235:492) */
.vision-slide__text-panel {
  background-color: #000000;
  border-radius: 20px 0 0 20px;
  padding: 126px 84px 126px 77px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-slide__title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  color: #ffffff;
  margin: 0 0 10px; /* Figma gap-[10px] between title and underline */
}

.vision-slide__underline {
  width: 154px;
  height: 5px;
  background-color: var(--toyota-red);
  margin: 0 0 30px; /* Figma gap-[30px] between title-block and description */
}
.vision-slide--variant2 .vision-slide__text-panel .vision-slide__underline {
  background: #fff;
}
.vision-slide__desc,
.vision-slide__desc p {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: #ffffff;
  margin: 0;
}
.vision-slide__text-panel,
.vision-slide__image-panel {
  min-height: 599px; /* Figma h-[599px] */
}
/* Right: image panel (Node 235:493) */
.vision-slide__image-panel {
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}

.vision-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom dots (Node 235:452 / Frame 1686552130)  */
/* Figma: 302x26px container, dots 26x26px outer ring, 8px inner filled circle, 1px #DCE0E4 connecting line */
.vision-slider-dots {
  text-align: center;
  margin-top: 47px; /* Figma gap-[47px] */
}

.vision-slider-dots ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 302px; /* Figma SVG width = 302px for 2 dots */
  position: relative;
}

/* Horizontal connecting line spanning between first and last dot edges */
.vision-slider-dots ul li:not(:first-child) button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  height: 1px;
  background-color: #dce0e4;
  transform: translateY(50%);
  z-index: 0;
  width: 251px;
}
.vision-slider-dots ul li button.cumulative-active::before {
  background-color: var(--toyota-red);
}
.vision-slider-dots ul li {
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Outer ring: 26x26px circle, transparent bg (hides line underneath) */
.vision-slider-dots ul li button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #ffffff; /* matches section bg, hides line inside dot area */
  border: 1px solid #dce0e4;
  padding: 0;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: border-color 0.3s ease;
  position: relative;
  display: block;
}

/* Inner 8px filled circle centered via absolute positioning */
.vision-slider-dots ul li button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dce0e4;
  transition: background-color 0.3s ease;
}

/* Active dot: red border + red inner circle */
.vision-slider-dots ul li button.cumulative-active {
  border-color: var(--toyota-red);
}

.vision-slider-dots ul li button.cumulative-active::after {
  background-color: var(--toyota-red);
}
/* Cumulative active dots */
.vision-slider-dots ul li button.cumulative-active {
  border-color: var(--toyota-red);
}

.vision-slider-dots ul li button.cumulative-active::after {
  background-color: var(--toyota-red);
}
/* Vision  */

/* Variant 2: image left (rounded-left), red text panel right (rounded-right) */
.vision-slide--variant2 .vision-slide__image-panel {
  border-radius: 20px 0 0 20px;
}

.vision-slide--variant2 .vision-slide__text-panel {
  background-color: var(--toyota-red);
  border-radius: 0 20px 20px 0;
}

/* =============================================================================
   About Us 
   ============================================================================= */

.objectives-section {
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  padding-bottom: 100px;
}

/* Left column */
.objectives-left-col {
  display: flex;
  align-items: stretch;
}

.objectives-inner {
  width: 100%;
  /* padding: 100px 80px 100px calc((100vw - 1620px) / 2 + 15px); */
}

/* Heading + underline (Node 239:512) */
.objectives-heading-wrap {
  margin-bottom: 70px;
}

.objectives-heading {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 20px;
  text-transform: none;
}

.objectives-underline {
  width: 154px;
  height: 5px;
  background-color: var(--toyota-red);
  margin: 0; /* left-aligned */
}

/* Timeline items list (Node 599:2668) */
.objectives-items {
  display: flex;
  flex-direction: column;
}

/* Single item */
.objectives-item {
  display: flex;
  gap: 65px;
  cursor: pointer;
  outline: none;
}

.objectives-item:focus-visible {
  outline: 2px solid var(--toyota-red);
  outline-offset: 4px;
}

/* Dot column */
.objectives-dot-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.objectives-dot {
  width: 26px;
  height: 26px;
  border: 1px solid #dce0e4;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
  background: #ffffff;
  z-index: 1;
}

.objectives-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dce0e4;
  transition: background-color 0.3s ease;
}

.objectives-item.is-active .objectives-dot {
  border-color: var(--toyota-red);
}

.objectives-item.is-active .objectives-dot-inner {
  background-color: var(--toyota-red);
}

/* Connecting line between dots */
.objectives-line {
  flex: 1;
  width: 1px;
  background-color: #dce0e4;
  margin: 4px 0;
  min-height: 28px;
}

/* Content area */
.objectives-content {
  flex: 1;
  padding-bottom: 41px;
}

.objectives-item:last-child .objectives-content {
  padding: 0;
}

/* Number (62px, red when active, faint gray when inactive) */
.objectives-number {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 62px;
  line-height: 62px;
  letter-spacing: -3.1px;
  opacity: 0.2;
  margin: 0 0 10px;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
  user-select: none;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000000;
  color: transparent;
  margin-bottom: 10px;
}

.objectives-item.is-active .objectives-number {
  color: var(--toyota-red);
  opacity: 1;
  -webkit-text-stroke-width: 0;
}
/* Title */
.objectives-title-text {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  color: #000000;
  margin: 0 0 10px;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  margin-bottom: 10px;
}

.objectives-item.is-active .objectives-title-text {
  opacity: 1;
}

/* Description */
.objectives-desc {
  display: none;
}

.objectives-item.is-active .objectives-desc {
  display: block;
}

.objectives-desc p,
.objectives-desc {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  color: var(--toyota-slate-blue);
  margin: 0;
}

.objectives-desc p + p {
  margin-top: 16px;
}

/* Right column: image */
.objectives-image-col {
  position: absolute;
  right: 0;
  top: 0px;
  width: 56%;
  height: 1018px;
}

.objectives-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Objectives  */

/* =============================================================================
   About Us -- Our Core Values (Node 244:381)
   ============================================================================= */

.core-values-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 100px 0;
  overflow: hidden;
  min-height: 800px;
}

/* Background car image */
.core-values-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.core-values-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay rgba(0,0,0,0.4) */
.core-values-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Inner content -- above overlay */
.core-values-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  width: 100%;
}

/* Title block (Node 244:827) */
.core-values-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.core-values-title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

.core-values-underline {
  width: 154px;
  height: 5px;
  background-color: var(--toyota-red);
}

/* Cards row (Node 631:4099) */
.core-values-cards {
  display: flex;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}

/* Single card (Node 631:4100) */
.core-values-card {
  flex: 1 0 0;
  min-width: 0;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #404040;
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  background: radial-gradient(
    ellipse at 9% 3%,
    rgba(54, 54, 54, 0.51) 0%,
    rgba(104, 104, 104, 0.38) 25%,
    rgba(154, 154, 154, 0.26) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.4s ease;
}

/* Icon wrapper */
.core-values-card__icon {
  width: 94px;
  height: 94px;
  flex-shrink: 0;
  position: relative;
}

.core-values-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Label */
.core-values-card__label {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 50px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
.core-values-card:hover {
  transform: translateY(-10px);
  border-color: var(--toyota-red);
  background: radial-gradient(
    119.5% 150.11% at 99.1% 97.02%,
    rgba(54, 54, 54, 0.51) 0%,
    rgba(104, 104, 104, 0.38) 25%,
    rgba(154, 154, 154, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
/* Core Values  */

/* =============================================================================
   About Us -- Toyota Libya Facilities (Node 3004:2336)
   ============================================================================= */

.facilities-section {
  background-color: #ffffff;
  padding: 100px 0;
}

/* Content: left tabs + right image grid */
.facilities-content {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

/* Left: tab list */
.facilities-tabs {
  flex-shrink: 0;
  width: 525px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Single tab button */
.facilities-tab {
  gap: 16px;
  width: 100%;
  text-align: left;
  border-radius: 12px;
  background-color: #ffffff;
  cursor: pointer;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  padding: 28px 40px;
  border: 1px solid #dce0e4;
  outline: 0;
}

/* Active tab overrides */
.facilities-tab.is-active {
  border-color: transparent;
  box-shadow: 0 0 49.4px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 23px;
}
.facilities-tab.is-active .facilities-tab__icon img {
  filter: unset;
  opacity: 1;
}
/* Icon */
.facilities-tab__icon {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}

.facilities-tab__icon img {
  width: 52px;
  min-width: 52px;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.4;
}

.facilities-tab__icon.is-inactive {
  opacity: 0.2;
}

/* Tab body */

.facilities-tab__title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  color: #000000;
  margin: 0;
  transition: opacity 0.3s ease;
  width: 80%;
}

/* Inactive tab: title faded */
.facilities-tab:not(.is-active) .facilities-tab__title {
  font-weight: 400;
  opacity: 0.4;
}

/* Description  */
.facilities-tab__desc {
  display: none;
  margin-top: 20px;
}

.facilities-tab.is-active .facilities-tab__desc {
  display: block;
}

.facilities-tab__desc p,
.facilities-tab__desc {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--toyota-slate-blue);
  margin: 0;
  margin-top: 25px;
}

/* Right: image grids */
.facilities-grids {
  flex: 1;
  min-width: 0;
  position: relative;
}

.facilities-grid {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
  content-visibility: auto;
}

.facilities-grid.is-active {
  display: flex;
}

/* Each photo item */
.facilities-grid__item {
  position: relative;
  width: calc(50% - 10px);
  height: 329px;
  border-radius: 13px;
  overflow: hidden;
}

.facilities-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facilities-grid__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 13px;
}

/* Facilities */

/* =============================================================================
   About Us -- Capability & Utility (Node 591:2288)
   ============================================================================= */

.capability-section {
  padding: 100px 0;
  padding-top: 0;
}

/* Cards row -- 3 equal columns, gap 30px */
.capability-cards {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* Extend community-card for capability */
.capability-card {
  flex: 1 0 0;
  min-width: 0;
  border-radius: 20px;
  height: 620px;
}
.capability-cards .community-card-desc p {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin: 20px 0 30px 0;
}
/* Capability */

.foot_logo {
  display: none;
  align-items: center;
  gap: 10px;
}

/* =============================================================================
   VEHICLES LISTING PAGE  (vl-* namespace)
   ============================================================================= */

/* Section wrapper */
.vl-section {
  background: #ffffff;
  padding: 80px 0;
}
.vl-container {
  padding-left: 24px;
  padding-right: 24px;
}

.vl-header {
  text-align: center;
  margin-bottom: 48px;
}
.vl-title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.15;
  color: #000000;
  margin: 0 0 16px 0;
}
.vl-title-underline {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto;
  border-radius: 2px;
}

.vl-filter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 10px;
  align-items: start;
  background: #f0f2f4;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 50px;
}
.vl-filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vl-filter-label {
  font-family: "Univers", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.55;
}

.vl-dropdown {
  position: relative;
}
.vl-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #dce0e4;
  border-radius: 100px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  font-family: "Univers", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  gap: 10px;
}
.vl-dropdown-trigger:hover {
  border-color: #a0a8b0;
}
.vl-dropdown.is-open .vl-dropdown-trigger {
  border-color: #e60021;
}
.vl-dropdown-text {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 1.42;
}
.vl-dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.vl-dropdown-arrow path {
  stroke: #e60021;
}
.vl-dropdown.is-open .vl-dropdown-arrow {
  transform: rotate(180deg);
}
.vl-dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 2;
  background: #ffffff;
  border: 1px solid #dce0e4;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
  padding: 8px 0;
  max-height: 240px;
  overflow-y: auto;
}
.vl-dropdown.is-open .vl-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vl-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  margin: 0;
  font-size: 15px;
  color: #000000;
  font-family: "Univers", sans-serif;
  font-weight: 400;
}
.vl-checkbox-item:hover {
  background: #f0f2f4;
}
.vl-filter-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #e60021;
  cursor: pointer;
}
.vl-checkbox-label {
  flex: 1;
  line-height: 1.3;
}
.vl-dropdown-empty {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: #9aa0a6;
  font-family: "Univers", sans-serif;
}
/* Highlight trigger text when filters are active */
.vl-dropdown.has-selection .vl-dropdown-trigger {
  border-color: #e60021;
  color: #000000;
  font-weight: 700;
}

.vl-tabs-wrapper {
  display: flex;
  align-items: stretch;
  height: 70px;
  border-bottom: 1px solid #dce0e4;
  margin-bottom: 50px;
  overflow-x: auto;
  scrollbar-width: none;
}
.vl-tabs-wrapper::-webkit-scrollbar {
  display: none;
}
.vl-tabs {
  display: flex;
  align-items: stretch;
  gap: 50px;
  white-space: nowrap;
  height: 100%;
  padding: 0 20px;
}
.vl-tab {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  border: none;
  border-bottom: 4px solid transparent;
  background: transparent;
  font-family: "Univers", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  position: relative;
  transition:
    color 0.2s ease,
    border-bottom-color 0.2s ease;
  white-space: nowrap;
  line-height: 20px;
}
.vl-tab:hover {
  color: #e60021;
}
.vl-tab.is-active {
  color: #e60021;
  font-weight: 700;
  border-bottom-color: #e60021;
}
.vl-tab:focus-visible {
  outline: 2px solid #e60021;
  outline-offset: 2px;
  border-radius: 3px;
}

.vl-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 0;
}
.vl-loading.is-visible {
  opacity: 1;
}
.vl-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f0f2f4;
  border-top-color: #e60021;
  border-radius: 50%;
  animation: vl-spin 0.8s linear infinite;
}
@keyframes vl-spin {
  to {
    transform: rotate(360deg);
  }
}

.vl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  transition: opacity 0.25s ease;
}
.vl-grid.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

.vl-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: 0.5s all ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}
.vl-card:hover {
  border-color: #e60021;
}

/* Card image area */
.vl-card__image-wrap {
  position: relative;
  height: 237px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.vl-card__image {
  max-width: 92%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  transition: transform 0.35s ease;
}
.vl-card:hover .vl-card__image {
  transform: scale(1.04);
}
.vl-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f2f4;
  border-radius: 8px;
}

/* Card body */
.vl-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.vl-card__name {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
  color: #000000;
  letter-spacing: -0.6px;
  margin: 0;
}

/* Specs list */
.vl-card__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.vl-card__spec {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
  line-height: 28px;
}
.vl-card__spec-label {
  font-family: "Univers", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #425368;
  white-space: nowrap;
  flex-shrink: 0;
}
.vl-card__spec-value {
  font-family: "Univers", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  line-height: 28px;
}

/* Card action buttons */
.vl-card__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}
.vl-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 100px;
  font-family: "Univers", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: 0.5s all ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.vl-card__btn--primary {
  background: #e60021;
  color: #ffffff;
  width: 185px;
}
.vl-card__btn--primary:hover,
.vl-card__btn--secondary:hover {
  font-size: 17px;
}
.vl-card__btn--secondary {
  background: #f0f2f4;
  color: #000000;
  width: 215px;
}
.vl-card__btn--secondary:hover {
  color: #fff;
  background: #e60021;
}

.vl-no-results {
  text-align: center;
  padding: 0 20px;
  color: #425368;
  font-family: "Univers", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

[dir="rtl"] .vl-filter-label,
[dir="rtl"] .vl-dropdown-text,
[dir="rtl"] .vl-checkbox-label,
[dir="rtl"] .vl-card__name,
[dir="rtl"] .vl-card__spec-label,
[dir="rtl"] .vl-card__spec-value {
  text-align: right;
}
[dir="rtl"] .vl-tabs {
  direction: rtl;
}

/* =============================================================================
   VEHICLES PAGE Interactive Boxes Section (Figma Node 3849:8066)
   ============================================================================= */
.vib-section {
  overflow: hidden;
  background-color: #000000;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 950px;
  position: relative;
  align-content: center;
}
.vib-section:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}
.vib-section:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 7.32%, #000000 108.02%);
}
/* Flex container for boxesâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vib-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0px 30px;
}

/* Single boxâ”€ */
.vib-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 0;
  min-width: 0;
  height: 640px;
  cursor: pointer;
  transition:
    flex 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: flex, height;
}

/* Edge boxes (1st and last) — shorter when inactive */
.vib-box--edge {
  width: 300px;
  height: 640px;
}

/* Inner boxes (2nd, 3rd, 4th) — medium height when inactive */
.vib-box--inner {
  width: 300px;
  height: 700px;
}

/* Active state — expanded */
.vib-box.is-active {
  flex: 2 1 0;
  height: 800px;
}

/* Background imageâ”â”€ */
.vib-box__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  pointer-events: none;
}

/* ── Gradient overlay — visible only on active box ────────────────────────── */
.vib-box__overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.vib-box.is-active .vib-box__overlay {
  opacity: 1;
}

/* Content overlay (title + desc + CTA)â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vib-box__content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.2s ease,
    transform 0.4s ease;
  pointer-events: none;
}
.vib-box.is-active .vib-box__content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0.8s;
}

/* Titleâ”€â”€â”€â”€â”€â”€ */
.vib-box__title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 51.6px;
  color: #ffffff;
  margin: 0;
}

/* Red underline  */
.vib-box__underline {
  width: 221px;
  height: 7px;
  background: #e60021;
  flex-shrink: 0;
  margin-top: -18px;
}

/* Description */
.vib-box__desc,
.vib-box__desc p {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
}

/* ── CTA button — white pill ──────────────────────────────────────────────── */
.vib-box__cta-wrap {
  display: flex;
  align-items: flex-start;
}
.vib-box__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 50px;
  background: #ffffff;
  border-radius: 100px;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  text-decoration: none;
  transition: 0.5s all ease;
}
.vib-box__cta:hover {
  background: #e60021;
  color: #ffffff;
  font-size: 15px;
}

/* =============================================================================
   SINGLE VEHICLE DETAIL PAGE (svd-)
   ============================================================================= */

/* Hero Banner */
.svd-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 96px);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background video — hidden until JS triggers fade-in */
.svd-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.svd-hero__video--visible {
  opacity: 1;
}

.svd-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  /* overlay stays on top of video, below content */
}

.svd-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px;
  /* Fade-out transition */
  opacity: 1;
  transition: opacity 0.8s ease;
}

.svd-hero__content--fading {
  opacity: 0;
}

.svd-hero__title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 160px;
  line-height: normal;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.svd-hero__underline {
  width: 154px;
  height: 5px;
  background: #e60021;
}

/* Sticky Sub-Navigationâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svd-subnav {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 95px;
  background: #000;
  border-top: 1px solid #fff;
  display: flex;
  align-items: center;
  top: 0;
}
nav.svd-subnav.is-stuck {
  position: sticky;
  z-index: 11;
}
.svd-subnav__mobile-toggle {
  display: none; /* Desktop par chhupa rahega */
  cursor: pointer;
  font-weight: bold;
  align-items: center;
  gap: 8px;
}
.svd-subnav__mobile-toggle span {
  color: #fff;
}

.svd-subnav .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svd-subnav__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.svd-subnav__list {
  display: flex;
  align-items: center;
  gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.svd-subnav__item {
  height: 100%;
  display: flex;
  align-items: center;
}

.svd-subnav__link {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.svd-subnav__link:hover,
.svd-subnav__link.is-active,
.svd-subnav__mobile-toggle.active-color span {
  color: #e60021;
}
.svd-subnav__mobile-toggle.active-color svg.arrow-icon path {
  stroke: red;
}

.svd-subnav__brochure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 100px;
  color: #fff;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: 0.5s all ease;
  width: 219px;
}

.svd-subnav__brochure:hover {
  background: #fff;
  color: #000;
}

.svd-subnav__testdrive {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 100px;
  color: #fff;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  min-width: 219px;
  transition: 0.5s all ease;
}

.svd-subnav__testdrive:hover {
  background: #fff;
  color: #000;
  font-size: 17px;
}

/* Versatility Sectionâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svd-versatility {
  padding: 80px 0;
}

.svd-vers__tabs-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 70px;
}

.svd-vers__tabs {
  display: flex;
  align-items: center;
  gap: 40px;
}

.svd-vers__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 10px 30px;
  border: 1px solid #e60021;
  border-radius: 10px;
  background: transparent;
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
  min-width: 233px;
  text-transform: capitalize;
}

.svd-vers__tab.is-active {
  background: #e60021;
  color: #fff;
  font-weight: 700;
}

.svd-vers__panel {
  display: none;
  position: relative;
}

.svd-vers__panel.is-active {
  display: block;
}

.svd-vers__gallery {
  display: grid !important;
  grid-template-columns: 1fr 300px;
  gap: 10px;
  overflow: hidden;
}
.svd-vers__gallery,
.svd-vers__main-image-wrap {
  height: 650px;
}

/* Left column: swatches bar sits above the main image */
.svd-vers__main-col {
  position: relative;
}

/* Swatches bar – centered row above the image */
.svd-vers__swatches-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 20px;
}

.svd-vers__main-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #f0f2f4;
}

.svd-vers__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svd-vers__swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 2px;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.svd-vers__swatch.is-active {
  border-color: #e60021;
}

/* Right column: static thumbnail strip (detail is a sibling of .svd-vers__gallery) */
.svd-vers__right-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.svd-vers__thumb-btn {
  flex: 1;
  min-height: 0;
  border: 3px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
  width: 100%;
  height: 159px;
}

.svd-vers__thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 9px;
}

/* Full-width detail overlay — CSS transition, covers panel area — full-bleed: image fills frame, content at bottom */
.svd-vers__detail {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  /* initial — invisible, slightly scaled down */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(2px);
}

.svd-vers__detail.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  width: 100%;
}

.svd-vers__detail .inn_box {
  width: 75%;
  position: relative;
  display: block;
  height: 100%;
  margin-left: auto;
  border-radius: 20px;
  overflow: hidden;
}

/* Image fills the inn_box — cross-fades on slide change */
.svd-vers__detail-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.svd-vers__detail-image.is-fading {
  opacity: 0;
}

/* X close button — top right */
.svd-vers__detail-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #000000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  cursor: pointer;
  transition: 0.5s all ease;
}

.svd-vers__detail-close:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Bottom gradient bar: text-box left / arrows right */
.svd-vers__detail-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 100px 40px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
}

.svd-vers__detail-textbox {
  flex: 1;
  min-width: 0;
}

.svd-vers__detail-title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 12px;
}

.svd-vers__detail-desc {
  font-family: "Univers", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 520px;
}

.svd-vers__detail-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-self: flex-end;
}

.svd-vers__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  background: transparent;
  transition: 0.5s all ease;
}

.svd-vers__arrow:hover {
  background: #e60021;
  border-color: #e60021;
}

/* Performance Sectionâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svd-performance {
  background: #f0f2f4;
  padding: 80px 0 0;
}

.svd-performance__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.svd-perf__cards {
  display: flex;
  gap: 10px;
  width: 100%;
}

.svd-perf__card {
  position: relative;
  flex: 1;
  height: 550px;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  transition: transform 0.4s ease;
}

.svd-perf__card--first {
  border-radius: 0 20px 20px 0;
}

[dir="rtl"] .svd-perf__card--first {
  border-radius: 20px 0 0 20px;
}

.svd-perf__card--last {
  border-radius: 20px 0 0 20px;
}

[dir="rtl"] .svd-perf__card--last {
  border-radius: 0 20px 20px 0;
}

.svd-perf__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svd-perf__card:hover .svd-perf__card-img {
  transform: scale(1.1);
}

.svd-perf__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.8;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.svd-perf__card:hover .svd-perf__card-overlay {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.svd-perf__card-content {
  position: relative;
  z-index: 2;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svd-perf__card-title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  color: #fff;
  text-transform: capitalize;
  margin: 0;
  transition: transform 0.8s ease;
}

/* Hidden by default, revealed on hover (matches Toyota Community) */
.svd-perf__card-hover {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    max-height 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svd-perf__card:hover .svd-perf__card-hover {
  opacity: 1;
  max-height: 200px;
}

.svd-perf__card-desc {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin: 15px 0 0 0;
}

.svd-technology {
  padding: 80px 0;
}

.svd-tech__image-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
  height: 600px;
}

.svd-tech__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svd-tech__image.is-active {
  opacity: 1;
  position: relative;
}

.svd-tech__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 70px;
  padding: 0 20px;
  border-bottom: 1px solid #dce0e4;
  width: 60%;
  margin: auto;
  margin-top: 10px;
}

.svd-tech__tab {
  background: none;
  border: none;
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.svd-tech__tab span{
  position: relative;
}
.svd-tech__tab span:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 4px;
  background: #e60021;
  bottom: -22px;
  transition: 0.3s all ease;
}
.svd-tech__tab.is-active {
  font-weight: 700;
  color: #e60021;
}
.svd-tech__tab.is-active span::before {
  width: 100%;
}
.svd-tech__indicator {
  position: absolute;
  bottom: -1px;
  height: 4px;
  background: #e60021;
  transition:
    left 0.3s ease,
    width 0.3s ease;
  display: none;
}

.svd-tech__descriptions {
  margin-top: 30px;
}

.svd-tech__desc {
  display: none;
  text-align: center;
}

.svd-tech__desc.is-active {
  display: block;
}

.svd-tech__desc,
.svd-tech__desc p {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: #4a4a4a;
  max-width: 834px;
  margin-left: auto;
  margin-right: auto;
}

/* Offers Sectionâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svd-offers {
  position: relative;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.svd-offers__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svd-offers__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.svd-offers__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.svd-offers__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 15px;
}

.svd-offers__title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  color: #fff;
  margin: 0;
  text-align: center;
}

.svd-offers__underline {
  width: 154px;
  height: 5px;
  background: #fff;
}

.svd-offers__btn {
  margin-top: 10px;
}

/* Compare Sectionâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svd-compare {
  position: relative;
  width: 100%;
  height: 357px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 100px 0px;
}

.svd-compare__deco {
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  width: 490px;
}

.svd-compare__deco--left {
  left: 0px;
  opacity: 0;
  transform: translateX(-300px);
  transition: all 1s ease-out;
}

.svd-compare__deco--right {
  right: 0;
  opacity: 0;
  transform: translateX(300px);
  transition: all 1s ease-out;
  width: 470px;
}

.svd-compare__deco img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.svd-compare__deco--right img {
  object-position: left;
}
/* Initial States */
.svd-compare__content {
  opacity: 0;
  transform: translateY(-350px);
  transition: all 0.8s ease-out;
}

/* Active Animation States */
.svd-compare.is-visible .svd-compare__content {
  opacity: 1;
  transform: translateY(0);
}

.svd-compare.is-visible .svd-compare__deco--left,
.svd-compare.is-visible .svd-compare__deco--right {
  opacity: 1;
  transform: translateX(0);
}

/* Optional: Button par thoda delay taake text ke baad aye */

.svd-compare__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}

.svd-compare__desc,
.svd-compare__desc p {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #425368;
  text-align: center;
  margin: 0;
  margin-top: -10px;
  margin-bottom: 10px;
}

.svd-compare__desc strong {
  font-weight: 700;
  color: #e60021;
}

/* CTA Sectionâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svd-cta {
  position: relative;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.svd-cta__bg {
  position: absolute;
  inset: 0;
}

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

.svd-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(250.944deg, rgba(0, 0, 0, 0) 2.59%, #000 107.52%);
}
.svd-cta__inner {
  position: relative;
}
.svd-cta__title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  color: #fff;
  margin: 0;
}

.svd-cta__underline {
  width: 154px;
  height: 5px;
  background: #fff;
  margin-top: 20px;
  margin-bottom: 70px;
}

.svd-cta__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.svd-cta__btn--white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  background: #fff;
  border-radius: 100px;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.5s all ease;
  width: 239px;
}

.svd-cta__btn--white:hover {
  background: #e60021;
  color: #fff;
}

.svd-cta__btn-icon {
  width: 14px;
  height: 14px;
}

/* Shared Button Stylesâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-pill-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e60021;
  border-radius: 100px;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: 0.5s all ease;
  width: 181px;
  height: 50px;
}

.btn-pill-red:hover {
  background: #e60021 !important;
  color: #fff;
  font-size: 17px;
}

/* RTL Adjustmentsâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
[dir="rtl"] .svd-subnav__list {
  direction: rtl;
}

[dir="rtl"] .svd-cta__inner {
  text-align: right;
}

[dir="rtl"] .svd-cta__buttons {
  justify-content: flex-start;
}

[dir="rtl"] .svd-compare__desc,
[dir="rtl"] .svd-compare__desc p {
  direction: rtl;
}

/* End of Single Vehicle Detail Pageâ”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* ======================================================
   Car Interior Versatility (.car-interior-versatility)
   Figma node: 3546:4897 — Scoped to Interior tab only
   ====================================================== */

/* -- Two-column layout -------------------------------- */
.civ-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 650px;
  align-items: center;
}

/* -- Left column: master interior image + hotspots ---- */
.civ-image-col {
  position: relative;
  height: 100%;
}

.civ-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
}

/* -- Red hotspot buttons ------------------------------ */
/* Figma: 3 concentric red circles (outer pulse, mid pulse, solid dot) */
.civ-hotspot {
  position: absolute;
  width: 55px;
  height: 55px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

/* Hotspot positions (from Figma node insets, converted to % of image)
   Feature 0 = Connected Cockpit    â†’ Figma Component 17
   Feature 1 = Uncompromised Space  â†’ Figma Component 18
   Feature 2 = Ergonomic Harmony    â†’ Figma Component 21
   Feature 3 = An Oasis of Calm     â†’ Figma Component 20 */
.civ-hotspot[data-index="0"] {
  top: 50%;
  left: 11%;
}
.civ-hotspot[data-index="1"] {
  top: 41.5%;
  left: 36%;
}
.civ-hotspot[data-index="2"] {
  top: 38.4%;
  left: 70%;
}
.civ-hotspot[data-index="3"] {
  top: 91%;
  left: 34%;
}

/* Solid centre dot (always visible) */
.civ-hotspot__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e60021;
  position: relative;
  z-index: 3;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Outer pulsing ring */
.civ-hotspot__ring {
  position: absolute;
  border-radius: 50%;
  background: rgba(230, 0, 33, 0.35);
  z-index: 1;
  pointer-events: none;
}

.civ-hotspot__ring--outer {
  width: 55px;
  height: 55px;
  animation: civPulseOuter 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.civ-hotspot__ring--mid {
  width: 36px;
  height: 36px;
  animation: civPulseMid 2.4s cubic-bezier(0, 0, 0.2, 1) 0.3s infinite;
}

@keyframes civPulseOuter {
  0% {
    transform: scale(0.35);
    opacity: 0.9;
  }
  70%,
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes civPulseMid {
  0% {
    transform: scale(0.4);
    opacity: 0.8;
  }
  70%,
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Active hotspot state — larger dot, brighter rings */
.civ-hotspot.is-active .civ-hotspot__dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 5px rgba(230, 0, 33, 0.3);
}

.civ-hotspot.is-active .civ-hotspot__ring--outer {
  animation: civPulseActiveOuter 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.civ-hotspot.is-active .civ-hotspot__ring--mid {
  animation: civPulseActiveMid 1.6s cubic-bezier(0, 0, 0.2, 1) 0.2s infinite;
}

@keyframes civPulseActiveOuter {
  0% {
    transform: scale(0.4);
    opacity: 1;
  }
  70%,
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@keyframes civPulseActiveMid {
  0% {
    transform: scale(0.45);
    opacity: 0.9;
  }
  70%,
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* Hover for non-active hotspot */
.civ-hotspot:not(.is-active):hover .civ-hotspot__dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(230, 0, 33, 0.2);
}

/* -- Right column: feature card ----------------------- */
/* Figma: white bg, border 1px #dedede, rounded 15px, shadow */
.civ-card-col {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Close-up feature image (Figma: 376px height, rounded 6px) */
.civ-card__image-wrap {
  position: relative;
  width: 100%;
  height: 376px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f0f2f4;
}

.civ-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s all ease;
}

.civ-card__image.is-fading {
  opacity: 0;
}

/* Card body: text + nav */
.civ-card__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.civ-card__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Figma: 24px bold Univers, #000 */
.civ-card__title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #000000;
  margin: 0;
}

.civ-card__title.is-fading {
  opacity: 0;
}

/* Figma: 18px regular Univers, #4A4A4A, line-height 30px */
.civ-card__desc {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #4a4a4a;
  margin: 0;
}

.civ-card__desc.is-fading {
  opacity: 0;
}

/* Navigation arrows row */
.civ-card__nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Arrow buttons (Figma: 50x50px circles) */
.civ-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
  flex-shrink: 0;
}

.civ-card__arrow:hover {
  background: #e60021;
  border-color: #e60021;
  color: #fff;
}

/* Next arrow has red fill by default (Figma active state) */
.civ-card__arrow--next {
  background: #e60021;
  border-color: #e60021;
  color: #fff;
}

.civ-card__arrow--next:hover {
  background: #cc001d;
  border-color: #cc001d;
}

/* ======================================================
   Car Interior Versatility — RTL
   ====================================================== */
[dir="rtl"] .civ-card__body {
  text-align: right;
}

[dir="rtl"] .civ-card__title,
[dir="rtl"] .civ-card__desc {
  direction: rtl;
}

[dir="rtl"] .civ-card__nav {
  flex-direction: row-reverse;
}

/* Default state: full-width image + hotspots (Figma: 3546:4962) */
.civ-default {
  position: relative;
  width: 100%;
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
}
.civ-default .civ-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.civ-default .civ-hotspot {
  position: absolute;
  width: 55px;
  height: 55px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

/* ── Color swatches — top center (Figma: 3963:8596) ── */
.civ-swatches {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
  border-radius: 75px;
}
.civ-swatch-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.civ-swatch-btn.is-active {
  border-color: #e60021;
}
.civ-swatch-btn:hover:not(.is-active) {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Inline card panel — sits INSIDE civ-default, hidden by default ── */
.civ-inline {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: 36% 62%;
  gap: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.civ-inline.is-open {
  opacity: 1;
  visibility: visible;
}

/* Left column — interior image (same image as default view) */
.civ-inline__image-col {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #dedede;
}
.civ-inline__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right column — white card (Figma: 3546:4946) */
.civ-inline__card-col {
  display: flex;
  align-items: center;
}
.civ-inline .civ-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 15px;
  box-shadow: 0px 3px 21.3px -11px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 20px;
  gap: 20px;
  max-height: 100%;
}

/* Close (X) — top-right of the card */
.civ-card__close {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all ease;
}
.civ-card__close:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Feature close-up image (Figma: 376px, rounded 6px) */

.civ-inline .civ-card__image.is-fading {
  opacity: 0;
}

/* Card body */
.civ-inline .civ-card__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
}
.civ-inline .civ-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.civ-inline .civ-card__title.is-fading {
  opacity: 0;
}
.civ-inline .civ-card__desc.is-fading {
  opacity: 0;
}

/* Nav arrows */
.civ-inline .civ-card__nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.civ-inline .civ-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
  flex-shrink: 0;
}
.civ-inline .civ-card__arrow:hover {
  background: #e60021;
  border-color: #e60021;
  color: #fff;
}

.civ-inline .civ-card__arrow--next:hover {
  background: #cc001d;
  border-color: #cc001d;
}

/* ==========================================================================
   360 DEGREE VIEW TAB – .tab-360-viewer-content
   All styles scoped to .tab-360-viewer-content to avoid conflicts.
   ========================================================================== */

.tab-360-viewer-content {
  position: relative;
  width: 100%;
  margin-top: 0;
}

/* Color Swatchesâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tab-360-viewer-content .viewer360-swatches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 75px;
  position: absolute;
  top: 30px;
  z-index: 10;
  left: 0;
  right: 0;
  margin: auto;
}

.tab-360-viewer-content .viewer360-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    border-color 0.25s,
    transform 0.25s;
  padding: 0;
  outline: none;
}

.tab-360-viewer-content .viewer360-swatch.is-active {
  border-color: #e60021;
}

/* 360 Stageâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tab-360-viewer-content .viewer360-stage {
  position: relative;
  width: 100%;
  height: 650px;
  background-color: #e1e1e0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.tab-360-viewer-content .viewer360-stage.is-dragging {
  cursor: grabbing;
}

/* 360 Imageâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tab-360-viewer-content .viewer360-image {
  display: block;
  max-width: 66%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  transition: opacity 0.05s linear;
}

/* Preloaderâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tab-360-viewer-content .viewer360-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #e1e1e0;
  z-index: 20;
  border-radius: 20px;
}

.tab-360-viewer-content .viewer360-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(0, 0, 0, 0.12);
  border-top-color: #e60021;
  border-radius: 50%;
  animation: viewer360spin 0.8s linear infinite;
}

@keyframes viewer360spin {
  to {
    transform: rotate(360deg);
  }
}

.tab-360-viewer-content .viewer360-loader-text {
  font-family: "Univers", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Drag-to-Rotate Hintâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tab-360-viewer-content .viewer360-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 15;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.tab-360-viewer-content .viewer360-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.tab-360-viewer-content .viewer360-hint-icon {
  flex-shrink: 0;
}

.tab-360-viewer-content .viewer360-hint-text {
  font-family: "Univers", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #e60021;
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cmp-hero {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
}
.cmp-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 450px;
  background-color: #000;
  z-index: -1;
}

.cmp-hero__title {
  font-size: 62px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.1;
}

.cmp-hero__underline {
  display: block;
  width: 154px;
  height: 5px;
  background: #e60021;
  border-radius: 3px;
  margin: 0 auto 24px;
}

.cmp-hero__subtitle {
  font-size: 24px;
  color: #fff;
  margin: 0;
  line-height: 30px;
}

/* Vehicle Slots */

.cmp-slots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.cmp-slots__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 30px 0;
}

/* Filled slot */
.cmp-slots__vehicle {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cmp-slots__image {
  max-width: 437px;
  width: 100%;
  height: 270px;
  object-fit: contain;
  margin-bottom: 30px;
}

.cmp-slots__image-placeholder {
  width: 437px;
  height: 245px;
  background: #dce0e4;
  border-radius: 8px;
  margin-bottom: 30px;
}

.cmp-slots__info {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.cmp-slots__name-btn {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 20px;
  height: 84px;
}

.cmp-slots__name {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  text-align: left;
  width: 100%;
}

.cmp-slots__chevron {
  flex-shrink: 0;
  margin-left: 10px;
  position: relative;
  top: 10px;
}

.cmp-slots__brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #e60021;
  text-decoration: none;
  border: 1px solid #e60021;
  border-radius: 100px;
  background: #ffffff;
  transition:
    background 0.2s,
    color 0.2s;
  width: 240px;
  height: 50px;
}

.cmp-slots__brochure:hover {
  background: #e60021;
  color: #ffffff;
}

.cmp-slots__brochure:hover svg path {
  stroke: #ffffff;
}

/* Empty slot — matches Figma node 4019:11138 */
.cmp-slots__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 10px;
  width: 100%;
  flex: 1;
}

.cmp-slots__add-btn {
  width: 60px;
  height: 61px;
  border-radius: 200px;
  border: none;
  background: #e60021;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.15s;
  padding: 0;
}

.cmp-slots__add-btn:hover:not(:disabled) {
  background: #c9001c;
  transform: scale(1.07);
}

.cmp-slots__plus {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cmp-slots__add-btn--disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cmp-slots__add-label {
  font-size: 24px;
  font-weight: 400;
  color: #425368;
  margin: 0;
  line-height: 28px;
  white-space: nowrap;
}

/* Sticky Mini-Nav  */
.cmp-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #dce0e4;
  overflow: visible;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.4s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.3s ease;
}

.cmp-sticky-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cmp-sticky-nav:has(.cmp-sticky-nav__item:not(:empty))::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60px;
  background: #f0f2f4;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cmp-sticky-nav__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: visible;
  transition:
    grid-template-columns 0.28s ease,
    gap 0.28s ease;
}

.cmp-sticky-nav--2-cols .cmp-sticky-nav__inner {
  grid-template-columns: repeat(2, 1fr);
}

.cmp-sticky-nav--3-cols .cmp-sticky-nav__inner {
  grid-template-columns: repeat(3, 1fr);
}

.cmp-sticky-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: visible;
}
.cmp-sticky-nav.is-visible .cmp-sticky-nav__item:empty {
  padding: 0;
}
.cmp-sticky-nav.is-visible .cmp-sticky-nav__item {
  padding: 5px 10px;
}
.cmp-sticky-nav__item.is-hidden {
  display: none;
}

.cmp-sticky-nav__thumb {
  width: 150px;
  height: 85px;
  object-fit: contain;
}

.cmp-sticky-nav__name {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #000000;
  cursor: pointer;
}

.cmp-sticky-nav__chevron {
  flex-shrink: 0;
  cursor: pointer;
}

.cmp-sticky-nav .cmp-dropdown {
  top: calc(100% + -2px);
  left: 0;
  margin: auto;
  width: min(380px, calc(100vw - 24px));
}

/* Spec Sections */
.cmp-specs {
  padding: 20px 0px 20px;
}

.cmp-specs__section:not(:last-child) {
  margin-bottom: 50px;
}

.cmp-specs__heading-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.cmp-specs__heading {
  font-size: 44px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px;
  line-height: 1.3;
}

.cmp-specs__heading-underline {
  display: block;
  width: 154px;
  height: 5px;
  background: #e60021;
  border-radius: 3px;
  margin: 0 auto;
}

/* Diff-only toggle */
.cmp-specs__diff-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 30px;
}

.cmp-toggle {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.cmp-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cmp-toggle__track {
  display: block;
  width: 80px;
  height: 40px;
  background: #d02b2b4d;
  position: relative;
  transition: background 0.25s;
  border-radius: 50px;
}

.cmp-toggle__input:checked + .cmp-toggle__track {
  background: #3cd21e4d;
}

.cmp-toggle__thumb {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 5px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background: #e60021;
  margin: auto;
}

.cmp-toggle__input:checked + .cmp-toggle__track .cmp-toggle__thumb {
  transform: translateX(40px);
  background: #3cd21e;
}

.cmp-toggle__label {
  font-size: 18px;
  color: #000000;
}

/* Spec Grid */
.cmp-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.cmp-specs__col {
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
}

.cmp-specs__row {
  padding: 10px 10px 10px 0px;
  height: 110px;
  align-content: end;
}
.cmp-specs__row.is-hidden {
  display: none;
}

.cmp-specs__row + .cmp-specs__divider.is-hidden {
  display: none;
}

.cmp-specs__label {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 28px;
  margin-bottom: 4px;
}

.cmp-specs__value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  line-height: 28px;
}

.cmp-specs__value.is-dimmed {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.cmp-specs__divider {
  height: 1px;
  background: #dce0e4;
  margin: 6px 0;
}
.cmp-specs__col .cmp-specs__divider:last-child {
  display: none;
}
.cmp-specs__row:last-of-type + .cmp-specs__divider {
  display: none;
}

/* Request a Quote CTAâ” */
.cmp-cta-wrap {
  text-align: center;
  padding: 30px 0px 100px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.cmp-cta-wrap .btn-pill-red {
  width: 225px;
}
a.btn-pill-red.js-cmp-pdf-btn {
  background: #fff;
  border: 1px solid #e60021;
  color: #e60021;
}

a.btn-pill-red.js-cmp-pdf-btn:hover {
  color: #fff;
}
/* Inline Dropdown  */

/* The slot containers need relative positioning for the dropdown */
.cmp-slots__col {
  position: relative;
}

.cmp-slots__vehicle {
  position: relative;
}

.cmp-slots__empty {
  position: relative;
}
.cmp-slots__empty .cmp-dropdown {
  left: 0;
  top: 70%;
  margin: auto;
}
/* Dropdown panel — hidden by default, absolute below trigger */
.cmp-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  /* z-index: 100; */
  background: #ffffff;
  border: 1px solid #909090;
  border-radius: 12px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
  padding: 24px 20px;
  width: 100%;
  max-width: 380px;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
}

.cmp-dropdown.is-open {
  display: flex;
}

/* Search bar inside dropdown */
.cmp-dropdown__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6f6f6;
  border: 1px solid #dce0e4;
  border-radius: 8px;
  height: 45px;
  padding: 10px 16px;
  flex-shrink: 0;
}

.cmp-dropdown__search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: "Univers", sans-serif;
  font-size: 14px;
  line-height: 1.42;
  color: #000000;
}

.cmp-dropdown__search-input::placeholder {
  color: #000;
}
.cmp-dropdown__search-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #f0f2f4;
  border-radius: 50%;
  padding: 6px;
}

/* Scrollable list */
.cmp-dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
}

.cmp-dropdown__list::-webkit-scrollbar {
  width: 6px;
}

.cmp-dropdown__list::-webkit-scrollbar-track {
  background: transparent;
}

.cmp-dropdown__list::-webkit-scrollbar-thumb {
  background: #dce0e4;
  border-radius: 3px;
}

.cmp-dropdown__group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: #f6f6f6;
  padding: 10px 12px;
  cursor: pointer;
}

.cmp-dropdown__group-toggle:hover {
  background: #eceff2;
}

/* Category heading */
.cmp-dropdown__group-heading {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
  margin: 0;
}

.cmp-dropdown__group-chevron {
  color: #425368;
  transition: transform 0.2s ease;
}

.cmp-dropdown__group.is-open .cmp-dropdown__group-chevron {
  transform: rotate(180deg);
}

/* Rows wrapper */
.cmp-dropdown__group-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.cmp-dropdown__group.is-open .cmp-dropdown__group-rows {
  max-height: 440px;
  opacity: 1;
  margin-top: 8px;
}

/* Single vehicle row */
.cmp-dropdown__row {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding-left: 12px;
  border-bottom: 1px solid #dce0e4;
  cursor: pointer;
  user-select: none;
}

/* .cmp-dropdown__row:hover {
  background: #f6f6f6;
} */

.cmp-dropdown__row.is-hidden {
  display: none;
}

/* Hide the native checkbox */
.cmp-dropdown__checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom checkbox */
.cmp-dropdown__checkbox {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #dce0e4;
  border-radius: 2px;
  position: relative;
  transition:
    background 0.15s,
    border-color 0.15s;
}

/* Checked state */
.cmp-dropdown__checkbox-input:checked + .cmp-dropdown__checkbox {
  background: #e60021;
  border-color: #e60021;
}

.cmp-dropdown__checkbox-input:checked + .cmp-dropdown__checkbox::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Vehicle name */
.cmp-dropdown__row-name {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #4a4a4a;
  /* white-space: nowrap; */
}

/* Hidden group (all rows filtered out) */
.cmp-dropdown__group.is-hidden {
  display: none;
}

/* Disabled row — vehicle already selected in another slot */
.cmp-dropdown__row.is-disabled {
  pointer-events: none;
  opacity: 0.4;
  cursor: default;
}

.cmp-dropdown__row.is-disabled .cmp-dropdown__checkbox {
  background: #dce0e4;
  border-color: #dce0e4;
}

/* Dynamic 2-column grid when 3rd slot is hidden */
.cmp-slots__grid[data-slot-count="2"] {
  grid-template-columns: repeat(2, 1fr);
}

.cmp-specs__grid[data-slot-count="2"] {
  grid-template-columns: repeat(2, 1fr);
}

/* =============================================================================
   Offers Page
   ============================================================================= */

/* Outline button (shared utility)â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #e60021;
  border-radius: 100px;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #e60021;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.5s all ease;
  height: 50px;
  padding: 0 44px;
}

.btn-pill-outline:hover {
  background: #e60021;
  color: #ffffff;
}

/* Section 2: Warranty & Maintenanceâ”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.offers-warranty {
  background: #ffffff;
  overflow: hidden;
  padding: 100px 0;
}
.offers-warranty a.btn-pill-red.offers-warranty__btn-item {
  width: 225px;
}
.offers-warranty__row {
  min-height: 754px;
}

.offers-warranty__img-col {
  overflow: hidden;
}

.offers-warranty__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.offers-warranty__content-col {
  display: flex;
  align-items: center;
}

.offers-warranty__content {
  padding: 80px 80px 80px 70px;
  max-width: 850px;
}

.offers-warranty__heading {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  color: #000000;
  text-transform: capitalize;
  margin: 0 0 14px 0;
}

.offers-warranty__underline {
  width: 154px;
  height: 5px;
  background-color: #e60021;
  border-radius: 2px;
  margin-bottom: 30px;
}

.offers-warranty__body {
  font-family: "Univers", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 32px;
}

.offers-warranty__body p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
}

.offers-warranty__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Section 3: Offers Slider */
.offers-slider-section {
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.offers-slider {
  width: 100%;
  position: relative;
}
.offers-slider:before {
  content: "";
  position: absolute;
  left: -200px;
  height: 101%;
  width: 200px;
  background: #fff;
  z-index: 1;
  top: -1px;
}
.offers-slide {
  outline: none;
}
.offers-slider .slick-slide {
  margin: 0 75px;
}
.offers-slider .slick-list {
  margin: 0 -75px;
}

.offers-slide__img-col {
  padding-right: 0px;
}

.offers-slide__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 815px;
}

.offers-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.offers-slide__content-col {
  display: flex;
  align-items: center;
}
.offers-slide__content {
  padding-left: 50px;
}
.offers-slide__title-wrap {
  margin-bottom: 35px;
}

.offers-slide__title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  color: #000000;
  text-transform: capitalize;
  margin: 0 0 10px 0;
}

.offers-slide__underline {
  width: 154px;
  height: 5px;
  background-color: #e60021;
  border-radius: 2px;
}

.offers-slide__subtitle {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #e60021;
  margin-bottom: 10px;
}

.offers-slide__body {
  font-family: "Univers", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 0;
}
.offers-slide__body a {
  color: #000;
  text-decoration: none;
  transition: 0.5s all ease;
}

.offers-slide__body a:hover {
  color: #e60021;
}
.offers-slide__body p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}

.offers-slide__body ul {
  padding: 10px 0px;
  padding-left: 27px;
  margin-bottom: 0;
}

.offers-slide__body li {
  font-size: 18px;
  line-height: 30px;
}

.offers-slide__meta {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 35px;
  position: relative;
}
.offers-slide__meta:before {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 1px;
  background: #dce0e4;
  top: 4px;
}
.offers-slide__meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offers-slide__meta-label {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #425368;
  white-space: nowrap;
}

.offers-slide__meta-value {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  white-space: nowrap;
}

/* Slick custom arrows */
.offers-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  z-index: 1;
  border-radius: 50%;
  background: #e60021;
  border: none;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition:
    background 0.3s ease,
    font-size 0.3s ease;
}

.offers-slider__arrow:hover {
  background: #c40019;
}

.offers-slider__arrow svg {
  flex-shrink: 0;
}

.offers-slider__arrow--next {
  right: 12%;
}

.offers-slider__arrow--prev {
  left: -2%;
}

.offers-slider-section .slick-list {
  overflow: visible;
  width: 90%;
}
.offers-slider-section .slick-list .slick-track {
  margin: unset;
}

/* Slick dots (mobile fallback) */
.offers-slider-section .slick-dots {
  bottom: -40px;
}

.offers-slider-section .slick-dots li button::before {
  font-size: 10px;
  color: #e60021;
}

.offers-slider-section .slick-dots li.slick-active button::before {
  color: #e60021;
  opacity: 1;
}

/* ── Section 4: Drive with Confidence – CTA ──────────────────────────────── */
.offers-cta {
  background: #000000;
  overflow: hidden;
  padding: 100px 0;
  padding-bottom: 160px;
  margin-top: 100px;
}

.offers-cta__text-col {
  display: flex;
  align-items: center;
}
.offers-cta__images img {
  width: 49%;
  object-fit: cover;
  height: 700px;
  border-radius: 20px;
}
.offers-cta__images img.offers-cta__img.offers-cta__img--2 {
  margin-left: 10px;
  position: relative;
  top: 60px;
}

.offers-cta__heading {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0 0 14px 0;
}

.offers-cta__underline {
  width: 154px;
  height: 5px;
  background-color: #e60021;
  border-radius: 2px;
  margin-bottom: 30px;
}

.offers-cta__subtitle {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #e60021;
  margin-bottom: 20px;
}

.offers-cta__body {
  font-family: "Univers", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 35px;
}

.offers-cta__body p {
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 0;
}
.offers-cta .row {
  align-items: center;
}

/* =============================================================================
   WARRANTY PAGE
   ============================================================================= */

.warranty-page {
  font-family: "Univers", sans-serif;
  overflow-x: hidden;
}

/* Hero Banner */
.warranty-hero {
  height: 797px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 204px; /* Matches Rectangle 4 position y=204 */
}

.warranty-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

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

.warranty-hero__title {
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  max-width: 991px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.warranty-hero__accent {
  width: 154px;
  height: 5px;
  background-color: #e60021;
}
.warranty-banner .about-banner__logo {
  width: 300px;
}

/* =========================================================================
   2. Section 2 — Coverage Highlights (.wc-section)
   ========================================================================= */
.wc-section {
  padding: 100px 0;
  background: #fff;
}

.wc-section .wc-title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin: 0 0 10px;
}
.wc-section .wc-accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto 20px;
}
.wc-section .wc-desc {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  width: 70%;
  margin: auto;
}

.wc-section .wc-body {
  margin-top: 60px;
}

.wc-section .wc-items {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.wc-section .wc-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.wc-section .wc-item__icon {
  width: 104px;
  height: 60px;
  overflow: hidden;
}
.wc-section .wc-item__icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.wc-section .wc-item__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wc-section .wc-item__title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  text-transform: capitalize;
  margin: 0;
}
.wc-section .wc-item__period {
  font-size: 24px;
  line-height: 30px;
  color: #e60021;
  margin: 0;
}
.wc-section .wc-item__desc {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}

.wc-section .wc-image-col {
  display: flex;
}
.wc-section .wc-image {
  width: 100%;
  height: 641px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* =========================================================================
   3. Section 3 — Zero-Cost Banner (.wzc-section)
   ========================================================================= */
.wzc-section {
  background: #fff;
}
.wzc-section .wzc-card {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1620px;
  margin: 0 auto;
}
.wzc-section .wzc-card .row {
  min-height: 485px;
}

.wzc-section .wzc-image-col {
  padding: 0;
}
.wzc-section .wzc-image {
  width: 100%;
  height: 100%;
  min-height: 485px;
  object-fit: cover;
  display: block;
}

.wzc-section .wzc-content-col {
  display: flex;
}
.wzc-section .wzc-content {
  width: 100%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wzc-section .wzc-title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
}
.wzc-section .wzc-accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 0 35px;
}
.wzc-section .wzc-desc {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  max-width: 543px;
  margin: 0;
}

/* =========================================================================
   4. Section 4 — Anatomy of Warranty (.wan-section)
   ========================================================================= */
.wan-section {
  padding: 100px 0;
  background: #fff;
}

.wan-section .wan-header {
  margin: 0 auto 20px;
}
.wan-section .wan-title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin: 0 0 10px;
}
.wan-section .wan-accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto 20px;
}
.wan-section .wan-desc {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}

.wan-section .wan-body {
  align-items: flex-start;
  --wan-rail: #f0f2f4;
  width: 1240px;
  margin: auto;
  align-items: center;
}

/* Sidebar */
.wan-section .wan-sidebar {
  display: flex;
  flex-direction: column;
  gap: 60px;
  border-left: 2px solid var(--wan-rail);
  padding: 8px 0 8px 24px;
  position: relative;
  width: 95%;
}
.wan-section .wan-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  font-family: inherit;
  color: #000;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.25s ease;
}
.wan-section .wan-tab:hover {
  opacity: 0.65;
}
.wan-section .wan-tab.is-active {
  opacity: 1;
}
.wan-section .wan-tab.is-active span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -27px;
  transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background: #e60021;
  border-radius: 2px;
}

.wan-section .wan-tab__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wan-section .wan-tab__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.wan-section .wan-tab__label {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

/* Panels + card */
.wan-section .wan-panels {
  position: relative;
  padding-left: 120px;
}
.wan-section .wan-panel {
  display: none;
}
.wan-section .wan-panel.is-active {
  display: block;
}

.wan-section .wan-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.08);
}
.wan-section .wan-card__head {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 20px;
  margin-bottom: 28px;
}
.wan-card__icon {
  width: 100px;
  height: 50px;
}
.wan-section .wan-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin: 0;
}

.wan-section .wan-detail {
  margin-bottom: 22px;
}
.wan-section .wan-detail__label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}
.wan-section .wan-detail__text p {
  font-size: 16px;
  line-height: 28px;
  color: #4a4a4a;
}
.wan-section .wan-detail__text p strong {
  color: #000;
  font-size: 18px;
}
.wan-section .wan-note p {
  background: #f6f6f6;
  padding: 10px;
  border-radius: 8px;
  margin-top: 0;
}
.wan-section .wan-note__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}
.wan-section .wan-note__text {
  font-size: 16px;
  line-height: 26px;
  color: #4a4a4a;
  margin: 0;
}

/* =========================================================================
   5. Section 5 — Spare Parts Warranty (.wsp-section)
   ========================================================================= */
.wsp-section {
  padding: 100px 0;
  background: #f0f2f4;
}

.wsp-section .wsp-title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin: 0 0 10px;
}
.wsp-section .wsp-accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 0 20px;
}
.wsp-section .wsp-desc {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0 0 40px;
  max-width: 700px;
}

.wsp-section .wsp-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wsp-section .wsp-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.08);
}
.wsp-section .wsp-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.wsp-section .wsp-card__icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  background: #f6f6f6;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wsp-section .wsp-card__icon img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  display: block;
}
.wsp-section .wsp-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #2e2e2e;
  line-height: 1.25;
  margin: 0;
}
.wsp-section .wsp-card__desc {
  font-size: 16px;
  line-height: 28px;
  color: #4a4a4a;
  margin: 0 0 18px;
}

.wsp-section .wsp-card__meta {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.wsp-section .wsp-card__meta-item {
  font-size: 16px;
  line-height: 28px;
  color: #2e2e2e;
  margin-bottom: 4px;
}
.wsp-section .wsp-card__meta-item:last-child {
  margin-bottom: 0;
}
.wsp-section .wsp-card__meta-item--note {
  color: #4a4a4a;
}
.wsp-section .wsp-card__meta-label {
  font-weight: 700;
  color: #000;
  margin-right: 6px;
}
.wsp-section .wsp-card__meta-value ul li {
  font-size: 18px;
  line-height: 28px;
  color: #000000;
}

.wsp-section .wsp-image-col {
  display: flex;
}
.wsp-section .wsp-image-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.wsp-section .wsp-image {
  width: 100%;
  height: 748px;
  object-fit: cover;
  display: block;
}

/* =========================================================================
   6. Section 6 — Maintenance Protocols (.wm-section)
   ========================================================================= */
.wm-section {
  padding: 100px 0;
  background: #000;
  color: #fff;
}

.wm-section .wm-header {
  margin: 0 auto 50px;
}
.wm-section .wm-title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
}
.wm-section .wm-accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto 20px;
}
.wm-section .wm-desc {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  width: 45%;
  margin: auto;
}

/* Tab nav */
.wm-section .wm-nav-wrap {
  border-bottom: 1px solid #dce0e4;
  width: 60%;
  margin: auto;
  margin-bottom: 50px;
}
.wm-section .wm-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  min-height: 70px;
  flex-wrap: wrap;
}
.wm-section .wm-tab {
  position: relative;
  background: none;
  border: 0;
  padding: 0 16px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.wm-section .wm-tab:hover {
  opacity: 1;
}
.wm-section .wm-tab.is-active {
  font-weight: 700;
  opacity: 1;
}
.wm-section .wm-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background: #fff;
}

/* Panels */
.wm-section .wm-panel {
  display: none;
}
.wm-panels .row {
  justify-content: center;
}
.wm-section .wm-panel.is-active {
  display: block;
}

/* Cards (glass effect on black) */
.wm-section .wm-card {
  height: 100%;
  background:
    radial-gradient(
      ellipse at top left,
      rgba(54, 54, 54, 0.51) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  border: 1px solid #404040;
  padding: 32px 24px;
  border-radius: 12px;
}
.wm-section .wm-card__icon {
  width: 55px;
  height: 40px;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
}
.wm-section .wm-card__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.wm-section .wm-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 10px;
}
.wm-section .wm-card__desc {
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* =========================================================================
   7. Section 7 — Claim Process (.wcp-section)
   ========================================================================= */
.wcp-section {
  padding: 100px 0;
  background: #fff;
}
.wcp-section .wcp-header {
  max-width: 757px;
  margin: 0 auto 50px;
}
.wcp-section .wcp-title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin: 0 0 10px;
}
.wcp-section .wcp-accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto 20px;
}
.wcp-section .wcp-desc {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}

.wcp-section .wcp-steps {
  position: relative;
}
.wcp-section .wcp-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.wcp-section .wcp-step__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.wcp-section .wcp-step__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wcp-section .wcp-step__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.wcp-section .wcp-step-col:not(:last-child) .wcp-step__icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 0px);
  right: calc(-50% + 0px);
  border-top: 2px dashed #c9cdd2;
  z-index: -1;
}
.wcp-section .wcp-step__title {
  font-size: 20px;
  font-weight: 700;
  color: #252525;
  line-height: 1.4;
  margin: 0 0 10px;
}
.wcp-section .wcp-step__desc {
  font-size: 16px;
  line-height: 24px;
  color: #4a4a4a;
  margin: 0;
}

/* =========================================================================
   8. Section 8 — Not Covered (.wnc-section)
   ========================================================================= */
.wnc-section {
  padding: 100px 0;
  background: #fff;
  padding-top: 0;
}
.wnc-section .wnc-header {
  max-width: 757px;
  margin: 0 auto 50px;
}
.wnc-section .wnc-title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin: 0 0 10px;
}
.wnc-section .wnc-accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto 20px;
}
.wnc-section .wnc-desc {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}

.wnc-section .wnc-nav-wrap {
  border-bottom: 1px solid #dce0e4;
  width: max-content;
  margin: auto;
  margin-bottom: 50px;
}
.wnc-section .wnc-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  min-height: 70px;
  flex-wrap: wrap;
}
.wnc-section .wnc-tab {
  position: relative;
  background: none;
  border: 0;
  padding: 0 16px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.wnc-section .wnc-tab:hover {
  opacity: 1;
}
.wnc-section .wnc-tab.is-active {
  color: #e60021;
  font-weight: 700;
  opacity: 1;
}
.wnc-section .wnc-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background: #e60021;
}

.wnc-section .wnc-panel {
  display: none;
}
.wnc-section .wnc-panel.is-active {
  display: block;
}
.wnc-section .wnc-panel .wnc-grid {
  justify-content: center;
}
.wnc-section .wnc-card {
  text-align: center;
  height: 100%;
}
.wnc-section .wnc-card__image-wrap {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.wnc-section .wnc-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.wnc-section .wnc-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wnc-section .wnc-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin: 0 0 12px;
}
.wnc-section .wnc-card__desc {
  font-size: 16px;
  line-height: 28px;
  color: #4a4a4a;
  margin: 0;
}

/* =========================================================================
   9. Section 9 — Recalls (.wrc-section)
   ========================================================================= */
.wrc-section {
  padding: 150px 0;
  background: #000;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.wrc-content {
  position: relative;
  z-index: 1;
}
.wrc-section .wrc-title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
}
.wrc-section .wrc-accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 0 20px;
}
.wrc-section .wrc-desc {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  max-width: 581px;
  margin: 0 0 32px;
}

.wrc-section .wrc-form {
  /* max-width: 640px; */
}
.wrc-section .wrc-inputs {
  margin: 0 auto 24px;
  align-items: stretch;
}
.wrc-section .wrc-field {
  display: flex;
  flex-direction: column;
}
.wrc-section .wrc-field .iti {
  width: 100%;
  display: block;
}
.wrc-section .wrc-input {
  width: 100%;
  height: 60px;
  border-radius: 100px;
  border: 1px solid #dce0e4;
  padding: 0 22px;
  font-size: 16px;
  background: #fff;
  color: #000;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  margin: 0;
}
.wrc-section .wrc-field--phone .iti--separate-dial-code .wrc-input--phone {
  padding-left: 92px;
}
.wrc-section .wrc-input:focus {
  border-color: #e60021;
  box-shadow: 0 0 0 3px rgba(230, 0, 33, 0.25);
}
.wrc-section .wrc-input::placeholder {
  color: #000;
}

.wrc-section .wrc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 65px;
  border: 0;
  border-radius: 100px;
  background: #e60021;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s all ease;
  width: 181px;
  justify-content: center;
}
.wrc-section .wrc-btn:hover {
  font-size: 19px;
}
.wrc-section .wrc-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.wrc-section .wrc-btn__icon svg {
  width: 23px;
  height: 23px;
}
.wrc-section .wrc-btn__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.wrc-section .wrc-image-col {
  display: flex;
}
.wrc-section .wrc-image-wrap {
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0px;
  height: 100%;
  z-index: 0;
}
.wrc-section .wrc-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0) 40%);
  z-index: 1;
  pointer-events: none;
}
.wrc-section .wrc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

/* Recall results modal — full results live here, never inline. */
.wrc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wrc-modal[hidden] {
  display: none;
}
.wrc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.wrc-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #000;
  border-radius: 16px;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.wrc-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid #eef0f2;
  flex: 0 0 auto;
}
.wrc-modal__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}
.wrc-modal__close {
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #000;
  padding: 0 6px;
  flex: 0 0 auto;
}
.wrc-modal__close:hover {
  color: #e60021;
}
.wrc-modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 24px;
}
.wrc-modal__vin-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: #f5f6f8;
  border-radius: 8px;
  border-left: 3px solid #e60021;
  margin-bottom: 20px;
}
.wrc-modal__vin-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4a4a4a;
}
.wrc-modal__vin-value {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
  font-family: ui-monospace, "Courier New", monospace;
  word-break: break-all;
}
.wrc-modal__recall + .wrc-modal__divider {
  margin: 16px 0;
}
.wrc-modal__divider {
  border: 0;
  border-top: 1px dashed #dce0e4;
}
.wrc-modal__list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.wrc-modal__list dt {
  font-weight: 700;
  font-size: 13px;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 6px 0 0;
}
.wrc-modal__list dd {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #000;
  word-break: break-word;
}
.wrc-modal__list dd:last-child {
  margin-bottom: 0;
}
.wrc-modal__no-recalls {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  text-align: center;
  padding: 24px 8px;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.wrc-modal__no-recalls-icon {
  flex: 0 0 auto;
  display: inline-block;
}
.wrc-modal__no-recalls-text {
  display: inline-block;
}
body.wrc-modal-open {
  overflow: hidden;
}

/* =========================================================================
   10. Section 10 — Download Booklet (.wdb-section)
   ========================================================================= */
.wdb-section {
  padding: 100px 0;
  background: #fff;
}
.wdb-section .wdb-card {
  background: #e60021;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1620px;
  margin: 0 auto;
}
.wdb-section .wdb-card .row {
  min-height: 485px;
}
.wdb-section .wdb-image-col {
  padding: 0;
}
.wdb-section .wdb-image {
  width: 100%;
  height: 100%;
  min-height: 485px;
  object-fit: cover;
  display: block;
}
.wdb-section .wdb-content-col {
  display: flex;
}
.wdb-section .wdb-content {
  width: 100%;
  padding: 60px 80px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wdb-section .wdb-title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
}
.wdb-section .wdb-accent {
  width: 154px;
  height: 5px;
  background: #fff;
  margin: 0 0 30px;
}
.wdb-section .wdb-desc {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  max-width: 543px;
  margin: 0 0 32px;
}
.wdb-section .wdb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 222px;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.5s all ease;
}
.wdb-section .wdb-btn:hover {
  font-size: 17px;
}

/* === Section 2: FAQ Tabs + Accordion (Figma 4125:7355) — scoped to .faq-tabs-section === */
.faq-tabs-section {
  padding: 100px 0;
  background: #fff;
}

.faq-panels-col {
  width: 80%;
  margin: auto;
}

.faq-tabs-section .faq-tabs-header {
  max-width: 757px;
  margin: 0 auto 50px;
}

.faq-tabs-section .faq-tabs-title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin: 0 0 10px;
}

.faq-tabs-section .faq-tabs-accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto 20px;
}

.faq-tabs-section .faq-tabs-desc {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}

/* Tab nav — 70px row, 1px bottom divider, 112px centered underline under active tab */
.faq-tabs-section .faq-nav-wrap {
  border-bottom: 1px solid #dce0e4;
  margin-bottom: 40px;
}

.faq-tabs-section .faq-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  min-height: 70px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.faq-tabs-section .faq-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  cursor: pointer;
  transition: color 0.25s ease;
}

.faq-tabs-section .faq-tab:hover {
  color: #e60021;
}

.faq-tabs-section .faq-tab.is-active {
  color: #e60021;
  font-weight: 700;
}

.faq-tabs-section .faq-tab.is-active span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background: #e60021;
  transform: translateX(-50%);
}

/* Panels */
.faq-tabs-section .faq-panel {
  display: none;
}

.faq-tabs-section .faq-panel.is-active {
  display: block;
}

/* Accordion — gray (#F0F2F4) rounded cards, 16px gap, red circle +/× toggle */
.faq-tabs-section .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-tabs-section .faq-item {
  background: #f0f2f4;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.faq-tabs-section .faq-item:hover {
  background: #e8ebee;
}

.faq-tabs-section .faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 60px;
  padding: 15px 20px;
  background: none;
  border: 0;
  text-align: left;
  font-family: inherit;
  color: #000;
  cursor: pointer;
}

.faq-tabs-section .faq-item__question {
  flex: 1 1 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42;
  color: #000;
}

.faq-tabs-section .faq-item__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #e60021;
  border-radius: 50%;
  color: #fff;
}

.faq-tabs-section .faq-item__icon-v {
  transition: opacity 0.2s ease;
}

.faq-tabs-section .faq-item.is-open .faq-item__icon-v {
  opacity: 0;
}

.faq-tabs-section .faq-item__body {
  padding: 0 20px 20px;
}

.faq-tabs-section .faq-item__content {
  font-size: 16px;
  line-height: 28px;
  color: #4a4a4a;
}

.faq-tabs-section .faq-item__content p {
  margin: 0 0 12px;
}

.faq-tabs-section .faq-item__content p:last-child {
  margin-bottom: 0;
}

.faq-tabs-section .faq-item__content ul,
.faq-tabs-section .faq-item__content ol {
  margin: 0 0 12px 20px;
  padding: 0;
}

.faq-tabs-section .faq-item__content a {
  color: #e60021;
  text-decoration: underline;
}

/* === Section 3: Get in Touch (Figma 4133:6857) — scoped to .faq-contact-section === */
.faq-contact-section {
  padding: 0px 0 100px;
  background: #fff;
}

/* Row: 20px gap between the two cards (10px gutter each side) */
.faq-contact-section .faq-contact-card {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

/* Left card: image only, rounded, soft shadow */
.faq-contact-section .faq-contact-left-col {
  display: flex;
}

.faq-contact-section .faq-contact-left {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 55px rgba(0, 0, 0, 0.1);
}

.faq-contact-section .faq-contact-left__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right card: white, rounded, shadow; content vertically centered */
.faq-contact-section .faq-contact-right-col {
  display: flex;
}

.faq-contact-section .faq-contact-right {
  width: 100%;
  padding: 40px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 55px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

/* Heading block */
.faq-contact-section .faq-contact-left__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-contact-section .faq-contact-left__heading {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin: 0;
}

.faq-contact-section .faq-contact-left__accent {
  width: 154px;
  height: 5px;
  background: #e60021;
}

/* Alerts */
.faq-contact-section .faq-contact-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.faq-contact-section .faq-contact-alert--success {
  background: #e8f6ec;
  color: #1e7f38;
  border: 1px solid #c5e6ce;
}

.faq-contact-section .faq-contact-alert--error {
  background: #fdecee;
  color: #b3001b;
  border: 1px solid #f5c2c9;
}

/* Hidden honeypot */
.faq-contact-section .faq-contact-hp {
  position: absolute;
  left: 0;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Form row gutters: 16px horizontal between inputs, 20px vertical between rows */
.faq-contact-section .faq-contact-form__row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 20px;
}

/* Input pills: #F6F6F6, 8px radius, 50px tall */
.faq-contact-section .faq-contact-input {
  width: 100%;
  height: 50px;
  padding: 12px 16px;
  background: #f6f6f6;
  border: 0;
  border-radius: 8px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
  font-family: inherit;
  outline: none;
  transition: box-shadow 0.2s ease;
  resize: none;
}

.faq-contact-section .faq-contact-input::placeholder {
  color: #4a4a4a;
}

.faq-contact-section .faq-contact-input:focus {
  box-shadow: 0 0 0 2px rgba(230, 0, 33, 0.25);
}

.faq-contact-section .faq-contact-input.is-invalid {
  box-shadow: 0 0 0 2px #e60021;
}

.faq-contact-section .faq-contact-textarea {
  height: 90px;
  min-height: 90px;
}

/* Submit button */
.faq-contact-section .faq-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 0;
  border-radius: 100px;
  background: #e60021;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s all ease;
  width: 145px;
}

.faq-contact-section .faq-contact-btn:hover {
  /* background: #c70019; */
  /* transform: translateY(-1px); */
  font-size: 17px;
}

.faq-contact-section .faq-contact-btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Parts & Accessories  */
.pa-hero-cta {
  text-align: right;
}

/* Section 2 — Genuine Parts */
.pa-genuine {
  padding: 100px 0;
  background: #fff;
}
.pa-genuine__row {
  align-items: center;
}
.pa-genuine__media {
  border-radius: 20px;
  overflow: hidden;
}
.pa-genuine__media img {
  width: 100%;
  height: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.pa-genuine__title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin: 0 0 10px;
}
.pa-genuine__accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin-bottom: 30px;
}
.pa-genuine__text {
  font-size: 18px;
  line-height: 30px;
  color: #000;
}
.pa-genuine__text p {
  margin: 0 0 16px;
}
.pa-genuine__text p:last-child {
  margin-bottom: 0;
}

/* Section 3 — Precision Quality */
.pa-precision {
  padding: 100px 0;
  padding-top: 0;
  background: #fff;
}
.pa-precision__header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.pa-precision__title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin: 0 0 10px;
}
.pa-precision__accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto 20px;
}
.pa-precision__desc {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0;
}

.pa-panels {
  display: flex;
  gap: 10px;
  width: 100%;
}
.pa-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow 0.55s ease;
}
.pa-panel.is-active {
  flex-grow: 2.7;
}
.pa-panels:hover .pa-panel {
  flex-grow: 1;
}
.pa-panels .pa-panel:hover {
  flex-grow: 2.7;
}
.pa-panel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.pa-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, #000 100%);
  z-index: 2;
}
.pa-panel__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  gap: 10px;
}
.pa-panel__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.pa-panel__desc {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.35s ease 0.1s,
    max-height 0.55s ease;
}
.pa-panel.is-active .pa-panel__desc {
  opacity: 1;
  max-height: 320px;
}
.pa-panels .pa-panel:hover .pa-panel__desc {
  opacity: 1;
  max-height: 320px;
}
.pa-panels:hover .pa-panel.is-active:not(:hover) .pa-panel__desc {
  opacity: 0;
  max-height: 0;
}

.pa-precision__cta {
  text-align: center;
  margin-top: 40px;
}

/* Section 4 — Counterfeit Parts */
.pa-counterfeit {
  padding: 100px 0;
  background: #000;
}
.pa-counterfeit__header {
  text-align: center;
  margin-bottom: 35px;
}
.pa-counterfeit__title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
}
.pa-counterfeit__accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto 20px;
}
.pa-counterfeit__sub {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin: 0;
}

.pa-cards {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.pa-card {
  height: 100%;
  padding: 31px 21px;
  border: 1px solid #404040;
  border-radius: 10px;
  background: radial-gradient(
    at top left,
    rgba(104, 104, 104, 0.3) 0%,
    rgba(154, 154, 154, 0.18) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
}
.pa-card__icon {
  width: 55px;
  height: 40px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.pa-card__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pa-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.4;
}
.pa-card__text {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin: 0;
}

/* Section 5 — How to Identify Genuine Parts */
.pa-identify {
  padding: 100px 0;
  background: #fff;
}
.pa-identify__header {
  max-width: 1093px;
  margin: 0 auto 50px;
  text-align: center;
}
.pa-identify__title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin: 0 0 10px;
}
.pa-identify__accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto 20px;
}
.pa-identify__desc {
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin: 0 0 20px;
}
.pa-identify__note {
  background: #f6f6f6;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 28px;
  color: #4a4a4a;
  text-align: center;
}
.pa-identify__note p {
  margin: 0;
}
.pa-identify__note strong,
.pa-identify__note b {
  font-weight: 700;
  color: #4a4a4a;
}

.pa-identify__grid {
  display: flex;
  gap: 40px;
}
.pa-identify__item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}
.pa-identify__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: opacity 0.5s ease;
}
.pa-identify__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 107.49%);
  z-index: 2;
  transition: opacity 0.5s ease;
}
.pa-identify__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 20px;
  transform: translateY(35%);
  transition: transform 0.5s ease;
}
.pa-identify__label {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0;
  line-height: 36px;
  text-transform: capitalize;
}
.pa-identify__item-desc {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  max-width: 664px;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    max-height 0.5s ease;
}
.pa-identify__item:hover .pa-identify__img {
  opacity: 0;
}
.pa-identify__item:hover .pa-identify__overlay {
  opacity: 0;
}
.pa-identify__item:hover .pa-identify__content {
  transform: translateY(0);
}
.pa-identify__item:hover .pa-identify__item-desc {
  opacity: 1;
  max-height: 240px;
}

/* Section 6 — Report Counterfeit (Figma 4437:10224) */
.pa-report {
  background: #fff;
}
.pa-report__row {
  align-items: stretch;
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.pa-report__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  box-shadow: 0 15px 55px rgba(0, 0, 0, 0.1);
}
.pa-report__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pa-report__form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  background: #f6f6f6;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  min-height: 500px;
}
.pa-report__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pa-report__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pa-report__title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin: 0;
  text-transform: capitalize;
}
.pa-report__accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0;
}
.pa-report__desc {
  font-size: 18px;
  line-height: 30px;
  color: #4a4a4a;
  margin: 0;
}
.pa-report__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
}
.pa-report__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pa-report__form-row {
  display: flex;
  gap: 16px;
}
.pa-report__field {
  flex: 1 1 0;
  min-width: 0;
}
.pa-report__input,
.pa-report__textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  color: #000;
  background: transparent;
  font-family: inherit;
  resize: none;
}
.pa-report__input {
  height: 50px;
}
.pa-report__textarea {
  height: 90px;
  min-height: 90px;
  display: block;
}
.pa-report__input::placeholder,
.pa-report__textarea::placeholder {
  color: #000;
  opacity: 1;
}
.pa-report__input:focus,
.pa-report__textarea:focus {
  outline: none;
  border-color: #e60021;
}
.pa-report__upload {
  align-self: flex-start;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 184px;
  padding: 13px 16px;
  margin: 0;
  border: 1px dashed #d9d9d9;
  border-radius: 8px;
  background: transparent;
  color: #000;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.pa-report__upload:hover {
  border-color: #e60021;
  background: #fff;
}
.pa-report__upload.is-filled {
  border-style: solid;
  border-color: #e60021;
  background: #fff;
}
.pa-report__upload-icon {
  display: inline-flex;
  width: 24px;
  height: 15px;
  color: #e60021;
}
.pa-report__upload-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pa-report__upload-text {
  font-size: 12px;
  line-height: 1.42;
  color: #000;
  text-align: center;
  word-break: break-word;
  max-width: 100%;
}
.pa-report__upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.pa-report__form .btn-pill-red {
  align-self: flex-start;
}
/* Submit button reuses shared .btn-pill-red — no local overrides needed. */

/* AJAX feedback: alert banner, honeypot, invalid-field highlight */
.pa-report__alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.pa-report__alert--success {
  background: #e8f6ec;
  color: #1e7f38;
  border: 1px solid #c5e6ce;
}
.pa-report__alert--error {
  background: #fdecee;
  color: #b3001b;
  border: 1px solid #f5c2c9;
}
.pa-report__hp {
  position: absolute;
  left: 0;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.pa-report__input.is-invalid,
.pa-report__textarea.is-invalid {
  border-color: #e60021;
  box-shadow: 0 0 0 2px rgba(230, 0, 33, 0.15);
}

/* Section 7 — Essential Parts Categories */
.pa-categories {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}
.pa-categories__header {
  text-align: center;
  margin-bottom: 50px;
}
.pa-categories__title {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin: 0 0 10px;
}
.pa-categories__accent {
  width: 154px;
  height: 5px;
  background: #e60021;
  margin: 0 auto;
}
.pa-categories__slider {
  margin: 0 -12px;
  position: relative;
}
.pa-categories__slider .slick-list {
  overflow: visible;
}
.pa-categories__item {
  padding: 0 12px;
  outline: none;
}
.pa-categories__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 387/350;
  margin-bottom: 30px;
  background: #f0f2f4;
}
.pa-categories__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pa-categories__item:hover .pa-categories__img-wrap img {
  transform: scale(1.05);
}
.pa-categories__label {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin: 0;
  line-height: 30px;
}
.pa-categories__cta {
  text-align: center;
  margin-top: 40px;
}

.pa-categories__slider .slick-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  padding: 0;
  background: #e60021;
  border: 1px solid #e60021;
  border-radius: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.pa-categories__slider .slick-arrow:hover {
  background: #fff;
  border-color: #dedede;
  color: #000;
}
.pa-categories__slider .slick-arrow::before {
  display: none;
}
.pa-categories__slider .slick-prev {
  left: -24px;
}
.pa-categories__slider .slick-next {
  right: -24px;
}
.pa-categories__slider .slick-disabled {
  opacity: 0.4;
  cursor: default;
}
.pa-categories__slider .slick-disabled:hover {
  background: #fff;
  border-color: #dedede;
  color: #000;
}

.unmatched-hotspot:nth-of-type(1) {
  top: 67.5%;
}
.unmatched-hotspot:nth-of-type(3) {
  left: 74%;
}
.unmatched-hotspot:nth-of-type(2) {
  top: 39.3%;
  left: 57.62%;
}

.why-cta-bg {
  opacity: 1;
}

.otgs-development-site-front-end {
  display: none;
}

/* ==========================================================
   Request a Service – Form Card (Figma 4716:15850)
   ========================================================== */
.svc-request {
  background: #fff;
  padding: 80px 0 100px;
}

.svc-request__card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 55px rgba(0, 0, 0, 0.1);
  padding: 40px 24px;
  max-width: 1620px;
  margin: 0 auto;
}

.svc-request__head {
  text-align: center;
  margin-bottom: 32px;
}

.svc-request__title {
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.1;
  color: #000;
  margin: 0 0 10px;
}

.svc-request__accent {
  width: 154px;
  height: 5px;
  background: var(--toyota-red);
  margin: 0 auto;
  border-radius: 2px;
}

/* Form grid */
.svc-request__form {
  width: 100%;
}

.svc-request__row {
  row-gap: 20px;
}

.svc-request__field {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-request__label {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #4a4a4a;
  margin: 0;
}

/* Inputs / selects share the same pill */
.svc-request__input,
.svc-request__select {
  display: block;
  width: 100%;
  height: 50px;
  background: #f6f6f6;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30.718px;
  color: #000;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.svc-request__input::placeholder {
  color: #000;
  opacity: 1;
}

.svc-request__input:focus,
.svc-request__select:focus {
  border-color: var(--toyota-red);
  background: #fff;
}

/* Native select reset + custom caret */
.svc-request__select-wrap {
  position: relative;
}

.svc-request__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.svc-request__select-wrap::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 11px;
  height: 7px;
  pointer-events: none;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'><path d='M1 1L5.5 5.5L10 1' stroke='red' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Privacy consent */
.svc-request__consent {
  margin-top: 6px;
}

.svc-request__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

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

.svc-request__check-box {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid #4a4a4a;
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.svc-request__check-input:checked + .svc-request__check-box {
  background: var(--toyota-red);
  border-color: var(--toyota-red);
}

.svc-request__check-input:checked + .svc-request__check-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.svc-request__check-input:focus-visible + .svc-request__check-box {
  outline: 2px solid var(--toyota-red);
  outline-offset: 2px;
}

.svc-request__check-text {
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30.718px;
  color: #000;
}

.svc-request__check-link {
  color: var(--toyota-red);
  text-decoration: underline;
}

.svc-request__check-link:hover {
  color: var(--toyota-red);
}

/* Submit row */
.svc-request__submit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.svc-request__submit {
  width: 225px;
  height: 50px;
  padding: 10px 44px;
}

/* Honeypot — visually hidden, off-screen */
.svc-request__hp {
  position: absolute;
  left: 0;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* AJAX feedback alerts (rendered below submit button) */
.svc-request__feedback {
  margin-top: 20px;
}
.svc-request__feedback:empty {
  margin-top: 0;
}

.svc-request__alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}
.svc-request__alert--success {
  background: #e8f6ec;
  color: #1e7f38;
  border: 1px solid #c5e6ce;
}
.svc-request__alert--error {
  background: #fdecee;
  color: #b3001b;
  border: 1px solid #f5c2c9;
}
.svc-request__alert--pending {
  background: #f1f4f8;
  color: #425368;
  border: 1px solid #d8dee6;
}

/* ============================================================
   OTP verification block — request-a-service.php only.
   Hidden by default; revealed when the user clicks Submit
   on a valid form and the phone hasn't been verified yet.
   ============================================================ */
.svc-request__otp[hidden] {
  display: none !important;
}
/* Verification card — sits on the form's white surface as a distinct step,
   tied to the brand with a left accent strip; radius/colors match form inputs. */
.svc-request__otp {
  position: relative;
  margin-top: 24px;
  padding: 24px 24px 20px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 8px;
  overflow: hidden;
}
.svc-request__otp::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #e60021;
}
.svc-request__otp-intro {
  margin: 0 0 16px;
  font-family: "Univers", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #4a4a4a;
}
.svc-request__otp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}
.svc-request__otp-input {
  min-width: 100px;
  background: #ffffff;
  letter-spacing: 0.5px;
  text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  /* Letter-spacing pushes content right; nudge padding so digits sit visually centered. */
  padding-left: 24px;
  text-align: left;
}
.svc-request__otp-input:focus {
  border-color: #e60021;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(230, 0, 33, 0.12);
}
.svc-request__otp-request,
.svc-request__otp-verify {
  flex: 0 0 auto;
  white-space: nowrap;
}
.svc-request__otp-request:focus-visible,
.svc-request__otp-verify:focus-visible {
  outline: 2px solid #e60021;
  outline-offset: 3px;
}
.svc-request__otp-request[disabled],
.svc-request__otp-verify[disabled],
.svc-request__otp-input[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
/* Submit button — visibly inert while form is incomplete. */
.svc-request__submit:disabled,
.svc-request__submit[disabled],
.pa-report .pa-report__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.svc-request__otp-meta {
  margin-top: 12px;
  font-family: "Univers", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #6a6a6a;
  font-variant-numeric: tabular-nums;
}
/* Status messages get a soft chip so success/error/pending read at a glance. */
.svc-request__otp-status {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: "Univers", sans-serif;
  font-size: 14px;
  line-height: 22px;
  min-height: 20px;
  border: 1px solid transparent;
}
.svc-request__otp-status:empty {
  display: none;
}
.svc-request__otp-status.is-success {
  color: #1e7f38;
  background: #e8f5ec;
  border-color: #c2e7cd;
}
.svc-request__otp-status.is-error {
  color: #b3001b;
  background: #fdecee;
  border-color: #f5c2c7;
}
.svc-request__otp-status.is-pending {
  color: #425368;
  background: #eef2f7;
  border-color: #d8dee6;
}

/* ============================================================
   Preferred Date input — native <input type="date">
   The browser's default indicator is hidden and a custom Figma calendar
   icon is overlaid via ::after. The native indicator stays clickable
   (opacity 0, full-bleed) so the whole pill opens the picker.

   Placeholder ("Select Date") is rendered via the wrap's ::before using
   the data-placeholder attribute. JS toggles the .has-value class on
   change/input so the placeholder hides once the user picks a date.
   ============================================================ */
.svc-request__date-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  /* iOS Safari: contain native date control's intrinsic overflow. */
  overflow: hidden;
}
.svc-request__date-wrap > input[type="date"] {
  /* Strip native iOS / Safari styling — <input type="date"> defaults to
     -webkit-appearance: textfield and ships with an intrinsic min-width
     based on the locale-formatted placeholder (yyyy-mm-dd / dd/mm/yyyy).
     On narrow viewports that min-width pushes past col-md-3 / col-12
     and forces the parent .row to overflow. Resetting appearance lets
     width: 100% / min-width: 0 take effect. */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding-right: 48px;
  cursor: pointer;
  overflow: hidden !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* Lock value to left + vertically center inside the 50px pill so the
     selected date stays anchored at the same spot as the ::before
     placeholder (which is positioned at left:20px / top:50%). Without this,
     after appearance:none WebKit renders ::-webkit-datetime-edit at the
     top-left of the box, causing the value to "shift up" relative to where
     the placeholder sat. line-height matches .svc-request__input height. */
  text-align: left;
  line-height: 50px;
}
@media (max-width: 575px) {
  /* Mobile pill height drops to 48px (see media query around line 12885),
     keep line-height in sync so the date value stays vertically centered. */
  .svc-request__date-wrap > input[type="date"] {
    line-height: 48px;
  }
}
/* Neutralize WebKit's default datetime-edit pseudo padding/alignment so
   the rendered value sits flush-left at the same x as the placeholder. */
.svc-request__date-wrap > input[type="date"]::-webkit-datetime-edit,
.svc-request__date-wrap
  > input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.svc-request__date-wrap > input[type="date"]::-webkit-datetime-edit-text,
.svc-request__date-wrap > input[type="date"]::-webkit-datetime-edit-month-field,
.svc-request__date-wrap > input[type="date"]::-webkit-datetime-edit-day-field,
.svc-request__date-wrap > input[type="date"]::-webkit-datetime-edit-year-field {
  text-align: left;
  padding: 0;
  margin: 0;
  line-height: inherit;
}
/* ============================================================
   iOS Safari (iPhone/iPad) — date input quirks.
   Gate: @supports (-webkit-touch-callout: none) is true ONLY on iOS
   Safari + iOS WebKit-based browsers; never matches desktop Chrome,
   Firefox, or non-iOS engines. Fix is fully scoped to iOS.

   Two iOS-specific symptoms patched here:
     1. ::-webkit-date-and-time-value (iOS-only pseudo wrapping the
        rendered value) is center-aligned + has its own padding by
        default. That's why the picked date appears centered + shifted
        up vs the left-anchored ::before placeholder.
     2. font-size < 16px on a focusable input forces an auto-zoom on
        iOS Safari, causing the visible page jump on tap. We hold
        font-size at 16px on iOS regardless of the desktop sizing.
   !important defeats the WebKit user-agent stylesheet, which uses
   higher specificity for the value pseudo than our scoped selector.
   ============================================================ */
@supports (-webkit-touch-callout: none) {
  .svc-request__date-wrap > input[type="date"] {
    font-size: 16px !important;
    text-align: left !important;
    /* iOS shrinks pill on focus without an explicit min-height. */
    min-height: 50px;
  }
  .svc-request__date-wrap > input[type="date"]::-webkit-date-and-time-value {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    /* Match input height so the rendered value is vertically centered
       and not pushed to the top of the box. */
    line-height: 50px !important;
    min-height: 50px;
    display: block;
    width: 100%;
    /* Belt + suspenders against iOS center-aligning the inline value. */
    -webkit-padding-start: 0 !important;
  }
  .svc-request__date-wrap > input[type="date"]::-webkit-datetime-edit {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 50px !important;
    min-height: 50px;
    display: block;
    width: 100%;
  }
  /* iPhone portrait — pill drops to 48px (see media query around line 12885). */
  @media (max-width: 575px) {
    .svc-request__date-wrap > input[type="date"] {
      min-height: 48px;
    }
    .svc-request__date-wrap > input[type="date"]::-webkit-date-and-time-value,
    .svc-request__date-wrap > input[type="date"]::-webkit-datetime-edit {
      line-height: 48px !important;
      min-height: 48px;
    }
  }
}
.svc-request__date-wrap
  > input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.svc-request__date-wrap > input[type="date"]::-webkit-inner-spin-button,
.svc-request__date-wrap > input[type="date"]::-webkit-clear-button {
  display: none;
  -webkit-appearance: none;
}
/* Hide the native "yyyy-mm-dd" placeholder text until a value is picked,
   so our custom ::before placeholder is what the user sees. */
.svc-request__date-wrap:not(.has-value)
  > input[type="date"]::-webkit-datetime-edit {
  color: transparent;
}
.svc-request__date-wrap:not(.has-value) > input[type="date"] {
  color: transparent;
}
.svc-request__date-wrap:not(.has-value)::before {
  content: attr(data-placeholder);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30.718px;
  color: #000;
}
.svc-request__date-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transform: translateY(-50%);
  /* Calendar icon — matches Figma node 4729:17106 (red, dotted day grid). */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'><path d='M15.1346 2.1001H2.56461C1.47937 2.1001 0.599609 2.97986 0.599609 4.0651V15.1351C0.599609 16.2203 1.47937 17.1001 2.56461 17.1001H15.1346C16.2198 17.1001 17.0996 16.2203 17.0996 15.1351V4.0651C17.0996 2.97986 16.2198 2.1001 15.1346 2.1001Z' stroke='%23E60021' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/><path d='M4.34961 11.8501C4.76382 11.8501 5.09961 11.5143 5.09961 11.1001C5.09961 10.6859 4.76382 10.3501 4.34961 10.3501C3.9354 10.3501 3.59961 10.6859 3.59961 11.1001C3.59961 11.5143 3.9354 11.8501 4.34961 11.8501Z' fill='%23E60021'/><path d='M7.34961 11.8501C7.76382 11.8501 8.09961 11.5143 8.09961 11.1001C8.09961 10.6859 7.76382 10.3501 7.34961 10.3501C6.9354 10.3501 6.59961 10.6859 6.59961 11.1001C6.59961 11.5143 6.9354 11.8501 7.34961 11.8501Z' fill='%23E60021'/><path d='M10.3496 11.8501C10.7638 11.8501 11.0996 11.5143 11.0996 11.1001C11.0996 10.6859 10.7638 10.3501 10.3496 10.3501C9.9354 10.3501 9.59961 10.6859 9.59961 11.1001C9.59961 11.5143 9.9354 11.8501 10.3496 11.8501Z' fill='%23E60021'/><path d='M13.3496 11.8501C13.7638 11.8501 14.0996 11.5143 14.0996 11.1001C14.0996 10.6859 13.7638 10.3501 13.3496 10.3501C12.9354 10.3501 12.59961 10.6859 12.59961 11.1001C12.59961 11.5143 12.9354 11.8501 13.3496 11.8501Z' fill='%23E60021'/><path d='M10.3496 8.8501C10.7638 8.8501 11.0996 8.51431 11.0996 8.1001C11.0996 7.68588 10.7638 7.3501 10.3496 7.3501C9.9354 7.3501 9.59961 7.68588 9.59961 8.1001C9.59961 8.51431 9.9354 8.8501 10.3496 8.8501Z' fill='%23E60021'/><path d='M13.3496 8.8501C13.7638 8.8501 14.0996 8.51431 14.0996 8.1001C14.0996 7.68588 13.7638 7.3501 13.3496 7.3501C12.9354 7.3501 12.59961 7.68588 12.59961 8.1001C12.59961 8.51431 12.9354 8.8501 13.3496 8.8501Z' fill='%23E60021'/><path d='M4.34961 14.8501C4.76382 14.8501 5.09961 14.5143 5.09961 14.1001C5.09961 13.6859 4.76382 13.3501 4.34961 13.3501C3.9354 13.3501 3.59961 13.6859 3.59961 14.1001C3.59961 14.5143 3.9354 14.8501 4.34961 14.8501Z' fill='%23E60021'/><path d='M7.34961 14.8501C7.76382 14.8501 8.09961 14.5143 8.09961 14.1001C8.09961 13.6859 7.76382 13.3501 7.34961 13.3501C6.9354 13.3501 6.59961 13.6859 6.59961 14.1001C6.59961 14.5143 6.9354 14.8501 7.34961 14.8501Z' fill='%23E60021'/><path d='M10.3496 14.8501C10.7638 14.8501 11.0996 14.5143 11.0996 14.1001C11.0996 13.6859 10.7638 13.3501 10.3496 13.3501C9.9354 13.3501 9.59961 13.6859 9.59961 14.1001C9.59961 14.5143 9.9354 14.8501 10.3496 14.8501Z' fill='%23E60021'/><path d='M5.09961 0.600098V4.3501M12.5996 0.600098V4.3501' stroke='%23E60021' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ============================================================
   Preferred Language radio pills (book-test-drive.php — Figma 4716:16386)
   Two pills sit side-by-side; each is a label styled like the standard
   form input (#f6f6f6 / 50px / 8px radius) with a custom red dot.
   ============================================================ */
.svc-request__radio-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.svc-request__radio {
  flex: 1 1 0;
  position: relative;
  margin: 0;
  cursor: pointer;
}
.svc-request__radio-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.svc-request__radio-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background: #f6f6f6;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30.718px;
  color: #000;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.svc-request__radio-dot {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid #b3b3b3;
  background: #ffffff;
  position: relative;
  transition: border-color 0.2s ease;
}
.svc-request__radio-input:checked
  + .svc-request__radio-pill
  .svc-request__radio-dot {
  border-color: #e60021;
}
.svc-request__radio-input:checked
  + .svc-request__radio-pill
  .svc-request__radio-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #e60021;
  border-radius: 50%;
}
.svc-request__radio-input:focus-visible + .svc-request__radio-pill {
  border-color: #e60021;
  box-shadow: 0 0 0 3px rgba(230, 0, 33, 0.12);
}
.svc-request__radio-text {
  flex: 1 1 auto;
}

/* ============================================================
   Quantity stepper (Figma 4625:13365) — gray pill, red − / + glyphs,
   centered Latin digits. Wrapper substitutes for the .svc-request__input
   pill so the field matches the rest of the form's 50px / 8px-radius look.
   ============================================================ */
.svc-request__stepper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20.478px;
  height: 50px;
  width: 219px;
  max-width: 100%;
  padding: 0 20px;
  background: #f6f6f6;
  border-radius: 8px;
  box-sizing: border-box;
}
.svc-request__stepper-btn {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: #e60021;
  font:
    700 24px/1 "Univers",
    sans-serif;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.15s ease;
}
.svc-request__stepper-btn:hover {
  opacity: 0.75;
}
.svc-request__stepper-btn:disabled,
.svc-request__stepper-btn[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
}
.svc-request__stepper-input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: center;
  font:
    400 18px/30.718px "Univers",
    sans-serif;
  color: #000;
  outline: none;
  -moz-appearance: textfield;
}
.svc-request__stepper-input::-webkit-outer-spin-button,
.svc-request__stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.svc-request__stepper-input:focus {
  outline: none;
}

/* ============================================================
   Side-by-side consents row (Driver's License + Privacy Policy)
   ============================================================ */
.svc-request__consents {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  align-items: center;
  margin-top: 6px;
}
.svc-request__consents .svc-request__error {
  flex: 0 0 100%;
}

/* Submit button — pending/loading state */
.svc-request__submit {
  position: relative;
}
.svc-request__submit-label {
  display: inline-block;
}
.svc-request__spinner {
  display: none;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  vertical-align: middle;
  animation: svc-request-spin 0.7s linear infinite;
}
.svc-request__submit.is-loading {
  opacity: 0.85;
  cursor: wait;
}
.svc-request__submit.is-loading .svc-request__spinner {
  display: inline-block;
}
@keyframes svc-request-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Invalid-field highlight */
.svc-request__input.is-invalid {
  border-color: var(--toyota-red);
  box-shadow: 0 0 0 2px rgba(230, 0, 33, 0.15);
}
.svc-request__check.is-invalid .svc-request__check-box {
  border-color: var(--toyota-red);
  box-shadow: 0 0 0 2px rgba(230, 0, 33, 0.15);
}

/* Inline field-level error message (renders below each input/select). */
.svc-request__error {
  display: block;
  min-height: 0;
  margin-top: 4px;
  font-family: "Univers", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: var(--toyota-red);
}
.svc-request__error:empty {
  display: none;
}

/* ----------------------------------------------------------
   intl-tel-input — keep the library's defaults intact and
   only override what's needed to blend into the form palette.
   Defensive `display`/`visibility` rules guard against any
   global resets that might otherwise hide the flag wrapper.
   ---------------------------------------------------------- */
.svc-request__field--phone .iti {
  display: block !important;
  position: relative;
  width: 100%;
}
.svc-request__field--phone .iti__flag-container,
.svc-request__field--phone .iti__selected-flag,
.svc-request__field--phone .iti__flag,
.svc-request__field--phone .iti__arrow {
  display: flex;
  visibility: visible;
  opacity: 1;
}
/* Ensure the flag itself isn't shrunk to zero by any inherited rules. */
.svc-request__field--phone .iti__flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  flex: 0 0 auto;
}

/* Match the input chrome to the rest of the form. */
.svc-request__field--phone .iti__tel-input,
.svc-request__field--phone input.svc-request__input {
  width: 100%;
  height: 50px;
  background: #f6f6f6;
  border: 1px solid transparent;
  border-radius: 8px;
  padding-right: 20px;
  font-family: "Univers", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30.718px;
  color: #000;
}
.svc-request__field--phone input.svc-request__input::placeholder {
  opacity: 0.5;
}
/* Round the left side cleanly when the dial code prefix is shown.
   `padding` declared in shorthand so library defaults aren't half-overridden. */
.svc-request__field--phone .iti--separate-dial-code .iti__selected-flag {
  background: #f6f6f6;
  border-radius: 8px 0 0 8px;
}
.svc-request__field--phone .iti--separate-dial-code .iti__selected-dial-code {
  font-family: "Univers", sans-serif;
  font-size: 16px;
  color: #000;
}

/* Country list dropdown — float above siblings + match form shadow. */
.svc-request__field--phone .iti__country-list {
  border-radius: 8px;
  font-family: "Univers", sans-serif;
  font-size: 15px;
  max-height: 260px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 1050; /* above bootstrap modals/cards (.iti default is 1) */
}
.svc-request__field--phone .iti__country.iti__highlight {
  background: rgba(230, 0, 33, 0.08);
}
.svc-request__field--phone .iti__divider {
  border-bottom-color: #e5e7eb;
}

/* The .svc-request__field column must NOT clip its overflow,
   otherwise the country list would be cut off by Bootstrap's
   col padding/overflow handling. */
.svc-request__field--phone {
  overflow: visible;
}

/* Invalid-state styling — match the rest of the form's red outline. */
.svc-request__field--phone input.svc-request__input.is-invalid,
.svc-request__field--phone
  .iti--separate-dial-code
  input.svc-request__input.is-invalid {
  border-color: var(--toyota-red);
  box-shadow: 0 0 0 2px rgba(230, 0, 33, 0.15);
}

/* RTL — flip the dial-code prefix to the right side. */
[dir="rtl"]
  .svc-request__field--phone
  .iti--separate-dial-code
  .iti__selected-flag {
  border-radius: 0 8px 8px 0;
}

/* ==========================================================
   FAQ Contact Form — extras (mirrors svc-request behavior)
   ========================================================== */

/* Inline field error message */
.faq-contact-section .faq-contact-error {
  display: block;
  margin-top: 4px;
  font-family: "Univers", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: var(--toyota-red);
}
.faq-contact-section .faq-contact-error:empty {
  display: none;
}

/* Field wrapper — vertical layout so error sits below input */
.faq-contact-section .faq-contact-field {
  display: flex;
  flex-direction: column;
}

/* Submit-row + feedback container */
.faq-contact-section .faq-contact-submit-wrap {
  display: flex;
  align-items: center;
}
.faq-contact-section .faq-contact-feedback {
  margin-top: 16px;
}
.faq-contact-section .faq-contact-feedback:empty {
  margin-top: 0;
}

/* AJAX feedback alerts — pending state added (success/error already exist) */
.faq-contact-section .faq-contact-alert {
  text-align: left;
}
.faq-contact-section .faq-contact-alert--pending {
  background: #f1f4f8;
  color: #425368;
  border: 1px solid #d8dee6;
}

/* Submit button — label + spinner */
.faq-contact-section .faq-contact-btn {
  position: relative;
  width: auto;
  min-width: 145px;
  padding: 0 28px;
}
.faq-contact-section .faq-contact-btn__label {
  display: inline-block;
}
.faq-contact-section .faq-contact-btn__spinner {
  display: none;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  vertical-align: middle;
  animation: svc-request-spin 0.7s linear infinite;
}
.faq-contact-section .faq-contact-btn.is-loading {
  opacity: 0.85;
  cursor: wait;
}
.faq-contact-section .faq-contact-btn.is-loading .faq-contact-btn__spinner {
  display: inline-block;
}

/* intl-tel-input integration inside .faq-contact-form */
.faq-contact-section .faq-contact-field--phone {
  overflow: visible;
}
.faq-contact-section .faq-contact-field--phone .iti {
  display: block !important;
  position: relative;
  width: 100%;
}
.faq-contact-section .faq-contact-field--phone .iti__flag-container,
.faq-contact-section .faq-contact-field--phone .iti__selected-flag,
.faq-contact-section .faq-contact-field--phone .iti__flag,
.faq-contact-section .faq-contact-field--phone .iti__arrow {
  display: flex;
  visibility: visible;
  opacity: 1;
}
.faq-contact-section .faq-contact-field--phone .iti__flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  flex: 0 0 auto;
}
.faq-contact-section .faq-contact-field--phone .iti__tel-input,
.faq-contact-section .faq-contact-field--phone input.faq-contact-input {
  width: 100%;
  height: 50px;
}
.faq-contact-section
  .faq-contact-field--phone
  .iti--separate-dial-code
  .iti__selected-flag {
  background: #f6f6f6;
  border-radius: 8px 0 0 8px;
}
.faq-contact-section
  .faq-contact-field--phone
  .iti--separate-dial-code
  .iti__selected-dial-code {
  font-size: 14px;
  color: #000;
}
.faq-contact-section .faq-contact-field--phone .iti__country-list {
  border-radius: 8px;
  font-family: "Univers", sans-serif;
  font-size: 15px;
  max-height: 260px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 1050;
}
.faq-contact-section .faq-contact-field--phone .iti__country.iti__highlight {
  background: rgba(230, 0, 33, 0.08);
}
[dir="rtl"]
  .faq-contact-section
  .faq-contact-field--phone
  .iti--separate-dial-code
  .iti__selected-flag {
  border-radius: 0 8px 8px 0;
}

/* aria-invalid mirrors .is-invalid styling */
.faq-contact-section .faq-contact-input[aria-invalid="true"] {
  box-shadow: 0 0 0 2px #e60021;
}

/* ==========================================================
   Parts & Accessories Report Form — extras
   ========================================================== */

/* Inline field error message */
.pa-report .pa-report__error {
  display: block;
  margin-top: 4px;
  font-family: "Univers", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: var(--toyota-red);
}
.pa-report .pa-report__error:empty {
  display: none;
}

/* Feedback container — appears below submit button */
.pa-report .pa-report__feedback {
  margin-top: 16px;
}
.pa-report .pa-report__feedback:empty {
  margin-top: 0;
}

/* Pending alert variant */
.pa-report .pa-report__alert {
  margin-bottom: 0;
}
.pa-report .pa-report__alert--pending {
  background: #f1f4f8;
  color: #425368;
  border: 1px solid #d8dee6;
}

/* Submit button — label + spinner */
.pa-report .pa-report__submit {
  position: relative;
}
.pa-report .pa-report__submit-label {
  display: inline-block;
}
.pa-report .pa-report__submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  vertical-align: middle;
  animation: svc-request-spin 0.7s linear infinite;
}
.pa-report .pa-report__submit.is-loading {
  opacity: 0.85;
  cursor: wait;
}
.pa-report .pa-report__submit.is-loading .pa-report__submit-spinner {
  display: inline-block;
}

/* intl-tel-input integration inside .pa-report__form */
.pa-report .pa-report__field--phone {
  overflow: visible;
}
.pa-report .pa-report__field--phone .iti {
  display: block !important;
  position: relative;
  width: 100%;
}
.pa-report .pa-report__field--phone .iti__flag-container,
.pa-report .pa-report__field--phone .iti__selected-flag,
.pa-report .pa-report__field--phone .iti__flag,
.pa-report .pa-report__field--phone .iti__arrow {
  display: flex;
  visibility: visible;
  opacity: 1;
}
.pa-report .pa-report__field--phone .iti__flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  flex: 0 0 auto;
}
.pa-report .pa-report__field--phone .iti__tel-input,
.pa-report .pa-report__field--phone input.pa-report__input {
  width: 100%;
  height: 50px;
}
.pa-report .pa-report__field--phone input.pa-report__input::placeholder {
  opacity: 0.5;
}
.pa-report
  .pa-report__field--phone
  .iti--separate-dial-code
  .iti__selected-flag {
  background: transparent;
  border-radius: 8px 0 0 8px;
  border-right: 1px solid #d9d9d9;
}
.pa-report
  .pa-report__field--phone
  .iti--separate-dial-code
  .iti__selected-dial-code {
  font-size: 14px;
  color: #000;
}
.pa-report .pa-report__field--phone .iti__country-list {
  border-radius: 8px;
  font-family: "Univers", sans-serif;
  font-size: 15px;
  max-height: 260px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 1050;
}
.pa-report .pa-report__field--phone .iti__country.iti__highlight {
  background: rgba(230, 0, 33, 0.08);
}
[dir="rtl"]
  .pa-report
  .pa-report__field--phone
  .iti--separate-dial-code
  .iti__selected-flag {
  border-radius: 0 8px 8px 0;
  border-right: 0;
  border-left: 1px solid #d9d9d9;
}

/* aria-invalid mirrors existing .is-invalid styling */
.pa-report .pa-report__input[aria-invalid="true"] {
  border-color: var(--toyota-red);
  box-shadow: 0 0 0 2px rgba(230, 0, 33, 0.15);
}
/* =========================================================================
   VIN Recall lookup — extras for the existing .wrc-section
   (warranty.php). Adds: inline field errors, live status chip, results
   table, See Details modal, intl-tel-input integration on the dark bg.
   ========================================================================= */

.wrc-section .wrc-input.is-invalid {
  border-color: #e60021;
  box-shadow: 0 0 0 3px rgba(230, 0, 33, 0.25);
}
.wrc-section .wrc-field .wrc-error {
  display: block;
  margin: 6px 0 0;
  padding: 0 22px;
  font-family: "Univers", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #ff5b6f;
  word-break: break-word;
}
.wrc-section .wrc-field .wrc-error:empty {
  display: none;
}

/* Live status (loading / no-recalls / error) shown under the form. */
.wrc-status {
  display: block;
  min-height: 0;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: "Univers", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.wrc-status:empty {
  display: none;
  padding: 0;
  margin-top: 0;
}
.wrc-status.is-pending {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.wrc-status.is-success {
  background: rgba(40, 167, 69, 0.12);
  color: #c2efcd;
  border-color: rgba(40, 167, 69, 0.4);
}
.wrc-status.is-error {
  background: rgba(230, 0, 33, 0.12);
  color: #ffb1bb;
  border-color: rgba(230, 0, 33, 0.4);
}

/* Submit button — disabled / loading states. */
.wrc-section .wrc-btn:disabled,
.wrc-section .wrc-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.wrc-section .wrc-btn.is-loading {
  cursor: wait;
}

/* Results — table sits inside the dark section, white surface for contrast. */
.wrc-results {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
.wrc-results__title {
  font-family: "Univers", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.wrc-results__table-wrap {
  background: #fff;
  border-radius: 12px;
  overflow: auto;
  box-shadow: 0 15px 55px rgba(0, 0, 0, 0.18);
}
.wrc-results__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Univers", sans-serif;
  font-size: 15px;
  color: #1a1a1a;
}
.wrc-results__table thead th {
  background: #f6f6f6;
  font-weight: 700;
  color: #4a4a4a;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}
.wrc-results__table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid #f0f1f3;
  vertical-align: middle;
}
.wrc-results__table tbody tr:last-child td {
  border-bottom: 0;
}
.wrc-results__action-col {
  width: 1%;
}
.wrc-results__action-cell {
  text-align: right;
  white-space: nowrap;
}
.wrc-results__details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e60021;
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 8px 18px;
  font-family: "Univers", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.wrc-results__details-btn:hover {
  opacity: 0.9;
}

/* Visually-hidden helper used for the action column header. */
.wrc-section .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* See Details modal. */
.wrc-modal[hidden] {
  display: none !important;
}
.wrc-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wrc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.wrc-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 64px);
  background: #fff;
  color: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrc-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f1f3;
}
.wrc-modal__title {
  font-family: "Univers", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.wrc-modal__close {
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  color: #4a4a4a;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.wrc-modal__close:hover {
  background: #e60021;
  color: #fff;
}
.wrc-modal__body {
  padding: 20px 24px 24px;
  overflow: auto;
}
.wrc-modal__list {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(140px, 32%) 1fr;
  gap: 12px 16px;
  font-family: "Univers", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}
.wrc-modal__list dt {
  font-weight: 700;
  color: #4a4a4a;
  margin: 0;
}
.wrc-modal__list dd {
  margin: 0;
  color: #1a1a1a;
  word-break: break-word;
}
body.wrc-modal-open {
  overflow: hidden;
}

/* intl-tel-input integration on the dark recalls form. */
.wrc-field--phone {
  position: relative;
  width: 45%;
}
.wrc-section .wrc-field--phone .iti {
  display: block !important;
  width: 100%;
}
.wrc-section .wrc-field--phone .iti__flag-container,
.wrc-section .wrc-field--phone .iti__selected-flag,
.wrc-section .wrc-field--phone .iti__flag,
.wrc-section .wrc-field--phone .iti__arrow {
  display: flex;
  visibility: visible;
  opacity: 1;
}
.wrc-section .wrc-field--phone .iti__flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  flex: 0 0 auto;
}
.wrc-section .wrc-field--phone .wrc-input--phone {
  width: 100%;
  height: 60px;
  border-radius: 100px;
  background: #fff;
}
.wrc-section .wrc-field--phone .iti--separate-dial-code .iti__selected-flag {
  background: #fff;
  border-radius: 100px;
}
.wrc-section
  .wrc-field--phone
  .iti--separate-dial-code
  .iti__selected-dial-code {
  font-family: "Univers", sans-serif;
  color: #000;
  font-size: 14px;
}
.wrc-section .wrc-field--phone .iti__country-list {
  border-radius: 8px;
  font-family: "Univers", sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  max-height: 260px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  z-index: 1050;
}
.wrc-section .wrc-field--phone .iti__country.iti__highlight {
  background: rgba(230, 0, 33, 0.08);
}

/* =========================================================================
   Global intl-tel-input dropdown — applies to every form using iti.
   With dropdownContainer: document.body the list is appended to <body>,
   so position absolutely on viewport, cap height with vh + scroll, and
   stack above modals/headers. Mobile keeps full reachability.
   -------------------------------------------------------------------------
   Alias map (mirrors window.TL_ITI in functions.php → tl_iti_dropdown_stabilizer):
     itiCountryList → .iti__country-list   (dropdown UL — only edit here)
     itiContainer   → .iti--container / body > .iti--container.iti--inside-container
   CSS can't alias selectors natively, so all rules touching the dropdown live
   in this single block. If iti renames the class, change it here AND in
   window.TL_ITI together — single point of truth.
   ========================================================================= */
.iti--container {
  z-index: 100000 !important;
}
.iti__country-list {
  max-height: 60vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 100000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  max-width: calc(100vw - 24px);
  box-sizing: border-box;
}

[dir="rtl"] .iti__country-list {
  text-align: right;
}

/* =========================================================================
   Body-mounted iti container — alignment fix for tablet/iPad (768–1366).
   With dropdownContainer: document.body, iti positions the list inline via
   top/left. These rules ensure the list stays within viewport bounds, sized
   from its content (not from a stale input width measured before tablet
   reflow), and never clipped by overflow:hidden / transform parents.
   ========================================================================= */
body > .iti.iti--container,
body > .iti--container.iti--inside-container {
  z-index: 100001;
  pointer-events: auto;
  max-width: calc(100vw - 12px);
}
body > .iti.iti--container .iti__country-list,
body > .iti--container.iti--inside-container .iti__country-list {
  position: relative;
  width: 360px !important;
  min-width: 240px;
  max-width: calc(100vw - 24px);
  max-height: 30vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  margin: 0;
  white-space: normal;
}
.wrc-content-col .svc-request__otp {
  margin-bottom: 24px;
}

body.page-template-request-a-part > .iti.iti--container .iti__country-list,
body.page-template-request-a-part
  > .iti--container.iti--inside-container
  .iti__country-list,
body.page-template-request-a-service > .iti.iti--container .iti__country-list,
body.page-template-request-a-service
  > .iti--container.iti--inside-container
  .iti__country-list,
body.page-template-request-a-quote > .iti.iti--container .iti__country-list,
body.page-template-request-a-quote
  > .iti--container.iti--inside-container
  .iti__country-list,
body.page-template-book-test-drive > .iti.iti--container .iti__country-list,
body.page-template-book-test-drive
  > .iti--container.iti--inside-container
  .iti__country-list {
  width: 760px !important;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px !important;
  }
  .flyout-overlay,
  .flyout-drawer {
    display: none !important;
  }
}
@media (min-width: 1250px) {
  .container {
    max-width: 1240px !important;
  }
}
@media (min-width: 1651px) {
  .container {
    max-width: 1620px !important;
  }
}
/* =============================================================================
   Responsive
   ============================================================================= */
@media (max-width: 1650px) {
  /* Vision: reduce oversized padding built for 1620px container */
  .vision-slide__text-panel {
    padding: 20px 50px;
  }

  /* Core values: label overflows narrow card at this container width */
  .core-values-cards {
    gap: 20px;
  }

  .core-values-card__label {
    font-size: 20px;
    white-space: normal;
    line-height: 1.3;
  }

  .core-values-card__icon {
    width: 76px;
    height: 76px;
  }

  /* Facilities: 525px is too heavy relative to 1240px container */
  .facilities-tabs {
    width: 450px;
  }

  /* Objectives: reduce fixed 1018px height for smaller viewports */
  .ceo-red-shape {
    height: 74%;
  }
  .distributor-heading,
  .vision-slide__title {
    font-size: 40px;
  }
  .distributor-body p,
  .distributor-body {
    font-size: 16px;
  }
  .distributor-section,
  .core-values-section {
    min-height: 650px;
  }
  .distributor-image {
    width: 900px;
  }
  .distributor-red-shape {
    width: 402px;
    height: 236px;
  }
  .objectives-image-col {
    width: 50%;
    height: 780px;
  }
  .objectives-item {
    gap: 30px;
  }
  .objectives-desc p,
  .objectives-desc,
  .facilities-tab__desc p,
  .facilities-tab__desc {
    font-size: 16px;
    line-height: 30px;
  }
  .vision-slide__desc,
  .vision-slide__desc p {
    font-size: 20px;
    line-height: 34px;
  }
  .vision-slide__text-panel,
  .vision-slide__image-panel {
    min-height: 420px;
  }
  .objectives-number {
    font-size: 42px;
    line-height: 42px;
  }
  .objectives-content {
    padding-bottom: 20px;
  }
  .objectives-title-text {
    font-size: 26px;
    line-height: 100%;
  }
  .facilities-tab__title {
    font-size: 20px;
    line-height: 32px;
  }
  .facilities-grid__item {
    height: 300px;
  }
  .capability-card {
    height: 500px;
  }
  .capability-cards .community-card-desc p {
    font-size: 16px;
  }
  .spec-value {
    line-height: 26px;
  }
  .vl-card {
    padding: 20px;
  }
  .vl-card__btn--primary {
    width: 150px;
  }
  .vl-card__btn--secondary {
    width: 175px;
  }
  .vib-box--edge {
    height: 500px;
  }
  .vib-box--inner {
    height: 560px;
  }
  .vib-box.is-active {
    height: 660px;
  }
  .vib-section {
    height: 850px;
  }
  .svd-hero__title {
    font-size: 100px;
  }
  .svd-subnav__list {
    gap: 30px;
  }
  .svd-cta,
  .svd-offers {
    height: 600px;
  }
  .svd-vers__gallery,
  .svd-vers__main-image-wrap,
  .civ-default,
  .tab-360-viewer-content .viewer360-stage {
    height: 550px;
  }
  .svd-vers__thumb-btn {
    height: 133px;
  }
  .svd-vers__thumb-btn img {
    object-position: bottom;
  }
  .svd-vers__gallery {
    grid-template-columns: 1fr 250px;
  }
  .civ-hotspot[data-index="3"] {
    top: 94%;
  }
  .civ-card__image-wrap {
    height: 280px;
  }
  .svd-vers__arrow,
  .civ-inline .civ-card__arrow {
    width: 40px;
    height: 40px;
  }
  .svd-vers__tabs-wrap {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .svd-vers__swatch,
  .civ-swatch-btn,
  .tab-360-viewer-content .viewer360-swatch {
    width: 26px;
    height: 26px;
  }
  .svd-perf__card-title {
    font-size: 26px;
    line-height: 30px;
  }
  .svd-perf__card-desc {
    font-size: 16px;
    line-height: 26px;
  }
  .svd-tech__image-wrap {
    height: 450px;
    margin-top: 40px;
  }
  .svd-tech__desc,
  .svd-tech__desc p {
    font-size: 24px;
    line-height: 34px;
  }
  .svd-tech__nav {
    width: 85%;
  }
  .svd-compare__deco {
    height: 90%;
    width: 450px;
    top: 30px;
  }
  .svd-compare__deco--right {
    width: 420px;
  }
  .svd-compare {
    margin: 80px 0;
  }
  .svd-cta__title {
    font-size: 40px;
  }
  .svd-cta__underline {
    margin-bottom: 40px;
  }
  .civ-inline {
    grid-template-columns: 36% 62%;
    gap: 20px;
  }
  .cmp-slots__name {
    font-size: 26px;
    line-height: 32px;
  }
  .cmp-slots__image {
    max-width: 100%;
    height: 200px;
  }
  .cmp-slots__add-label {
    font-size: 20px;
  }

  .offers-slider__arrow--next {
    right: 20px;
  }

  .offers-slider__arrow--prev {
    left: 20px;
  }

  .offers-warranty__content {
    padding: 70px 60px;
  }

  .offers-slider .slick-slide {
    margin: 0 50px;
  }
  .offers-slider .slick-list {
    margin: 0 -50px;
  }
  .offers-slider-section .slick-list {
    width: 100%;
  }
  .offers-slider__arrow {
    width: 50px;
    height: 50px;
  }
  .offers-slider__arrow--prev {
    left: -25px;
  }
  .offers-warranty__heading,
  .offers-slide__title,
  .offers-cta__heading {
    font-size: 40px;
  }
  .offers-cta__images img {
    width: 48.5%;
    height: 510px;
  }
  .offers-slide__subtitle,
  .offers-cta__subtitle {
    font-size: 20px;
    line-height: 26px;
  }
  .offers-warranty__row {
    min-height: 600px;
  }
  .about-banner__heading {
    font-size: 60px;
  }
  .wc-section .wc-image {
    height: 480px;
  }

  .wc-section .wc-items {
    gap: 30px;
  }

  .wc-section .wc-item__title {
    font-size: 30px;
  }
  .wc-section .wc-item {
    gap: 15px;
  }
  .wzc-section .wzc-content {
    padding: 50px 40px;
  }

  .wan-section .wan-body {
    width: 1000px;
  }

  .wan-section .wan-panels {
    padding-left: 60px;
  }

  .wsp-section .wsp-title {
    font-size: 45px;
  }

  .wsp-section .wsp-card {
    padding: 25px;
  }

  .wsp-section .wsp-image {
    height: 620px;
  }

  .wsp-section .wsp-desc {
    margin: 0 0 20px;
  }

  .wm-section .wm-nav-wrap {
    width: 80%;
  }

  .wdb-section .wdb-content {
    padding: 50px 40px;
  }

  .wdb-section .wdb-card .row {
    min-height: 400px;
  }

  .wdb-section .wdb-image {
    min-height: 400px;
  }

  .wdb-section .wdb-title {
    font-size: 35px;
  }
  .pa-genuine {
    padding: 80px 0;
  }
  .pa-precision {
    padding: 80px 0;
    padding-top: 0;
  }
  .pa-counterfeit {
    padding: 80px 0;
  }
  .pa-identify {
    padding: 80px 0;
  }
  .pa-categories {
    padding: 80px 0;
  }

  .pa-genuine__title,
  .pa-precision__title,
  .pa-counterfeit__title,
  .pa-identify__title,
  .pa-report__title,
  .pa-categories__title {
    font-size: 42px;
    line-height: 1.15;
  }

  .pa-genuine__media img {
    height: 520px;
  }
  .pa-genuine__accent {
    margin-bottom: 24px;
  }

  .pa-precision__header {
    margin: 0 auto 40px;
  }
  .pa-panel {
    height: 480px;
  }
  .pa-panel__title {
    font-size: 26px;
  }
  .pa-panel__desc {
    font-size: 16px;
    line-height: 28px;
  }

  .pa-counterfeit__header {
    margin-bottom: 30px;
  }
  .pa-card {
    padding: 26px 20px;
  }
  .pa-card__icon {
    margin-bottom: 24px;
  }

  .pa-identify__header {
    max-width: 900px;
    margin-bottom: 40px;
  }
  .pa-identify__grid {
    gap: 24px;
  }
  .pa-identify__item {
    height: 480px;
  }
  .pa-identify__label {
    font-size: 32px;
    line-height: 1.2;
  }
  .pa-identify__item-desc {
    font-size: 16px;
    line-height: 28px;
    max-width: 560px;
  }
  .pa-identify__content {
    gap: 16px;
    padding: 28px 20px;
  }
  .pa-identify__item:hover .pa-identify__item-desc {
    max-height: 200px;
  }

  .pa-report__title {
    font-size: 42px;
  }
  .pa-report__desc {
    font-size: 16px;
    line-height: 28px;
  }
  .pa-report__form-wrap {
    padding: 32px 24px;
    gap: 24px;
    min-height: 460px;
  }
  .pa-report__intro {
    gap: 16px;
  }
  .pa-report__form {
    gap: 24px;
  }
  .pa-report__media {
    min-height: 460px;
  }

  .pa-categories__header {
    margin-bottom: 40px;
  }
  .pa-categories__label {
    font-size: 22px;
    line-height: 28px;
  }
  .pa-categories__img-wrap {
    margin-bottom: 24px;
  }
  .pa-categories__slider {
    margin: 0 -10px;
  }
  .pa-categories__item {
    padding: 0 10px;
  }
  .pa-categories__slider .slick-prev {
    left: -16px;
  }
  .pa-categories__slider .slick-next {
    right: -16px;
  }
  .pa-categories__cta {
    margin-top: 32px;
  }
  body > .iti.iti--container .iti__country-list,
  body > .iti--container.iti--inside-container .iti__country-list {
    width: 270px !important;
    font-size: 12px;
  }
  body.page-template-request-a-part > .iti.iti--container .iti__country-list,
  body.page-template-request-a-part
    > .iti--container.iti--inside-container
    .iti__country-list,
  body.page-template-request-a-service > .iti.iti--container .iti__country-list,
  body.page-template-request-a-service
    > .iti--container.iti--inside-container
    .iti__country-list,
  body.page-template-request-a-quote > .iti.iti--container .iti__country-list,
  body.page-template-request-a-quote
    > .iti--container.iti--inside-container
    .iti__country-list,
  body.page-template-book-test-drive > .iti.iti--container .iti__country-list,
  body.page-template-book-test-drive
    > .iti--container.iti--inside-container
    .iti__country-list {
    width: 570px !important;
  }
  .vl-card__spec-label {
    font-size: 14px;
  }
  .vl-card__spec-value {
    font-size: 16px;
  }
}

@media (max-width: 1440px) {
  .objectives-image-col {
    height: 650px;
  }
  .vib-box__title {
    font-size: 30px;
  }
  .vib-box__underline {
    width: 200px;
  }
  .vib-box__desc,
  .vib-box__desc p {
    font-size: 16px;
    line-height: 26px;
  }
  .vib-box__content {
    left: 20px;
    right: 20px;
  }
  .vib-box--edge {
    height: 350px;
  }
  .vib-box--inner {
    height: 410px;
  }
  .vib-box.is-active {
    height: 510px;
  }
  .vib-section {
    height: 700px;
  }
  .vib-box__cta {
    width: 205px;
  }
  .svd-cta,
  .svd-offers {
    height: 500px;
  }
  .svd-hero__title {
    font-size: 80px;
  }
  .svd-vers__tab {
    font-size: 20px;
    padding: 0;
    min-width: 200px;
  }
  .svd-vers__gallery,
  .svd-vers__main-image-wrap,
  .civ-default,
  .tab-360-viewer-content .viewer360-stage {
    height: 450px;
  }
  .svd-vers__thumb-btn {
    height: 109px;
  }
  .svd-vers__detail-title {
    font-size: 28px;
  }
  .svd-vers__detail-desc {
    max-width: 80%;
  }
  .civ-hotspot[data-index="3"] {
    top: 96%;
  }
  .civ-card__title {
    font-size: 22px;
  }
  .civ-card__desc {
    font-size: 16px;
    line-height: 26px;
  }
  .civ-inline .civ-card {
    padding: 10px;
  }
  .civ-card__image-wrap {
    height: 210px;
  }
  .civ-card__close,
  .svd-vers__detail-close {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
  }
  .tab-360-viewer-content .viewer360-stage {
    align-items: end;
    padding-bottom: 20px;
  }
  .svd-perf__card {
    height: 450px;
  }
  .svd-perf__card-title {
    font-size: 20px;
    line-height: 26px;
  }
  .svd-perf__card-desc {
    font-size: 14px;
    line-height: 24px;
  }
  .svd-tech__desc,
  .svd-tech__desc p {
    max-width: 70%;
    font-size: 20px;
    line-height: 30px;
  }
  .svd-tech__image-wrap {
    height: 400px;
    margin: auto;
    margin-top: 40px;
    width: 90%;
  }
  .svd-compare__deco {
    width: 360px;
    height: 70%;
    top: 20%;
  }
  .svd-compare__deco--right {
    width: 340px;
  }
  .cmp-hero__title {
    font-size: 55px;
  }
  .cmp-hero__subtitle {
    font-size: 20px;
  }
  .cmp-specs__value {
    font-size: 18px;
    line-height: 26px;
  }
  .cmp-specs__heading {
    font-size: 40px;
    line-height: 50px;
  }
  .offers-warranty__row {
    min-height: 540px;
  }
  .offers-warranty__content {
    padding: 50px 50px;
  }
  .offers-slide__meta-value {
    font-size: 20px;
  }
  .offers-slide__meta {
    margin-bottom: 10px;
  }
  .offers-slide__img-wrap {
    height: 770px;
  }
  .offers-cta {
    padding-bottom: 140px;
  }
  .offers-slide__body,
  .offers-slide__body p,
  .offers-slide__body li {
    font-size: 16px;
    line-height: 28px;
  }
  .offers-slide__meta {
    gap: 10px;
  }
  .offers-slide__title-wrap,
  .offers-warranty__underline,
  .offers-cta__underline {
    margin-bottom: 20px;
  }
  .btn-pill-outline {
    padding: 0 25px;
  }
}

@media (max-width: 1364px) {
  .vision-slide__title {
    font-size: 42px;
  }
  .vision-slide__desc {
    font-size: 20px;
    line-height: 34px;
  }
  .about-banner__heading {
    font-size: 50px;
  }
  .ceo-name {
    font-size: 42px;
  }
  .ceo-photo-wrapper {
    min-height: 580px;
  }
  .facilities-tabs {
    width: 400px;
  }

  .facilities-grid__item {
    height: 280px;
  }
  .section-title {
    font-size: 40px;
  }
  .section-title-wrap {
    text-align: center;
    margin-bottom: 50px !important;
  }
  .ceo-message p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
  .ceo-bg-watermark {
    width: 700px;
    height: 650px;
  }
  .ceo-toyota-watermark-text {
    font-size: 120px;
  }
  .ceo-toyota-watermark {
    width: 511px;
    height: 104px;
    right: -217px;
    bottom: 190px;
  }
  .objectives-image-col {
    height: 640px;
  }
  .facilities-tab__title {
    font-size: 18px;
  }
  .facilities-tab {
    padding: 20px;
  }
  .facilities-tab__desc p,
  .facilities-tab__desc {
    margin-top: 20px;
  }
  .svd-subnav__link {
    font-size: 16px;
  }
  .svd-compare {
    margin: 50px 0;
  }
  .svd-cta__title {
    font-size: 36px;
  }

  .offers-warranty__content {
    padding: 60px 40px;
  }

  .offers-slide__img-col {
    padding-right: 0px;
  }
  .offers-slide__content {
    padding-left: 30px;
  }
}

@media (max-width: 1199px) {
  .distributor-image {
    width: 80%;
  }
  .objectives-heading {
    font-size: 38px;
  }
  .core-values-card__label {
    font-size: 18px;
    white-space: normal;
    line-height: 1.3;
  }

  .core-values-card__icon {
    width: 70px;
    height: 70px;
  }

  .facilities-tabs {
    width: 420px;
  }
  .about-banner {
    height: 550px;
  }
  .ceo-photo {
    left: 0;
    width: 100%;
  }
  .ceo-signature {
    font-size: 40px;
    margin-top: 10px;
  }
  .distributor-heading,
  .vision-slide__title {
    font-size: 30px;
  }
  .distributor-section {
    min-height: 500px;
    padding: 80px 0px;
  }
  .distributor-image {
    width: 70%;
  }
  .distributor-red-shape {
    width: 222px;
    height: 136px;
    top: 25px;
  }
  .vision-section {
    padding: 70px 0px;
  }
  .vision-slide__desc,
  .vision-slide__desc p {
    font-size: 16px;
    line-height: 30px;
  }
  .vision-slide__underline {
    width: 95px;
  }
  .objectives-section {
    padding-bottom: 70px;
  }
  .objectives-item {
    gap: 20px;
  }
  .objectives-heading-wrap {
    margin-bottom: 50px;
  }
  .core-values-title {
    font-size: 40px;
  }
  .core-values-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .core-values-card {
    max-width: 23%;
    min-width: 23%;
  }
  .core-values-inner {
    gap: 50px;
  }
  .core-values-section {
    padding: 70px 0px;
  }
  .core-values-bg__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    background: #000000;
  }
  .facilities-grid__item {
    height: 250px;
  }
  .facilities-tab__icon img {
    width: 42px;
    min-width: 42px;
  }
  .capability-cards .community-card-title {
    font-size: 24px;
  }
  .capability-card {
    height: 450px;
  }
  .capability-cards .community-card-desc p {
    font-size: 14px;
  }
  .dyn-nav {
    display: none !important;
  }
  .dyn-panel.mega-menu {
    display: none !important;
  }
  nav.navbar.navbar-expand-lg.px-4.container.mx-auto.w-100 {
    padding: 10px 0 !important;
    justify-content: space-between !important;
  }
  .foot_logo {
    display: flex;
  }
  .lang-dropdown-item {
    width: 100%;
  }
  .lang-picker-btn,
  .language-picker .dropdown-menu {
    width: 100px;
    min-width: 100px;
  }
  .lang-picker-icon {
    width: 24px;
    height: 24px;
  }
  .mega-menu,
  .mega-menu-backdrop,
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
  .flyout-toggle {
    display: flex !important;
  }
  .vl-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
    row-gap: 24px;
  }
  .vl-card {
    gap: 40px;
  }
  .vl-card__name {
    font-size: 24px;
  }
  .vl-card__spec-value {
    font-size: 18px;
  }
  .vl-card__spec-label {
    font-size: 16px;
  }
  .vl-card__btn {
    padding: 0 24px;
  }
  .vl-title {
    font-size: 40px;
  }
  .vl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vl-card__image-wrap {
    height: 215px;
  }
  .vl-card__btn--primary {
    width: 160px;
  }
  .vl-card__btn--secondary {
    width: 185px;
  }
  .vib-box__title {
    font-size: 24px;
    line-height: 28px;
  }
  .civ-layout {
    height: 580px;
  }
  .civ-card__title {
    font-size: 20px;
  }
  .civ-card__desc {
    font-size: 16px;
    line-height: 26px;
  }
  .civ-default {
    height: 520px;
  }
  .tab-360-viewer-content .viewer360-image {
    max-width: 75%;
  }
  .svd-subnav__mobile-toggle {
    display: flex;
  }
  .svd-subnav__list {
    display: none; /* Shuru mein band */
    position: absolute;
    top: 93px;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    padding: 10px 0;
    border-top: 1px solid #333;
  }
  .svd-subnav.is-open .svd-subnav__list {
    display: flex;
    height: auto;
  }
  .svd-subnav.is-open .arrow-icon {
    transform: rotate(180deg);
  }
  .svd-subnav__item {
    width: 91%;
  }
  .svd-subnav__link {
    padding: 0;
    width: 100%;
  }
  .svd-hero__title {
    font-size: 60px;
  }
  .svd-vers__gallery {
    grid-template-columns: 1fr 210px;
  }
  .svd-vers__gallery,
  .svd-vers__main-image-wrap,
  .civ-default,
  .tab-360-viewer-content .viewer360-stage {
    height: 350px;
  }
  .svd-vers__thumb-btn {
    height: 84px;
  }
  .svd-vers__swatch,
  .civ-swatch-btn,
  .tab-360-viewer-content .viewer360-swatch {
    width: 20px;
    height: 20px;
  }
  .svd-vers__arrow,
  .civ-inline .civ-card__arrow {
    width: 35px;
    height: 35px;
  }
  .civ-card__image-wrap {
    height: 160px;
  }
  .svd-vers__detail-bar {
    padding: 150px 20px 20px;
  }
  .svd-perf__card {
    height: 350px;
  }
  .svd-tech__image-wrap {
    height: 350px;
    margin: auto;
    margin-top: 20px;
    width: 100%;
  }
  .svd-tech__nav {
    width: 100%;
  }
  .svd-hero,
  .svd-cta,
  .svd-offers {
    height: 400px;
  }
  .svd-tech__tab {
    font-size: 16px;
  }
  .svd-tech__desc,
  .svd-tech__desc p {
    max-width: 80%;
  }
  .svd-offers__title {
    font-size: 40px;
  }
  .svd-compare__deco {
    width: 240px;
    height: 70%;
    top: 25%;
  }
  .svd-compare__deco--right {
    width: 240px;
  }
  .svd-compare__desc,
  .svd-compare__desc p {
    font-size: 18px;
    line-height: 30px;
  }
  .svd-compare__content {
    width: 50%;
  }
  .svd-compare {
    height: 100%;
  }
  .svd-cta__title {
    font-size: 30px;
  }
  .svd-cta__underline {
    margin-bottom: 30px;
  }
  .header-logo .logo-image {
    height: 70px;
  }
  .cmp-hero__title {
    font-size: 48px;
  }
  .cmp-specs__heading {
    font-size: 34px;
  }
  .cmp-sticky-nav__inner {
    padding: 0 40px;
  }
  .cmp-hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .cmp-hero::before {
    height: 340px;
  }
  .cmp-slots__name {
    font-size: 20px;
    line-height: 26px;
  }
  .cmp-slots__name-btn svg {
    width: 15px;
  }
  .cmp-specs__row {
    height: 90px;
  }
  .cmp-dropdown {
    padding: 15px;
  }
  .cmp-dropdown__search-input {
    width: 100%;
  }
  .cmp-dropdown__search {
    padding: 10px;
  }
  .cmp-dropdown__group-heading {
    font-size: 16px;
  }
  .cmp-dropdown__row-name {
    font-size: 14px;
  }
  .cmp-slots__brochure {
    width: 220px;
    height: 45px;
  }
  .cmp-toggle__track {
    width: 70px;
    height: 30px;
  }
  .cmp-toggle__thumb {
    width: 20px;
    height: 20px;
  }
  .cmp-specs__heading {
    font-size: 30px;
    line-height: 40px;
  }
  .cmp-sticky-nav__name {
    font-size: 14px;
    line-height: 18px;
  }
  .cmp-sticky-nav__thumb {
    width: 80px;
    height: 80px;
  }
  .cmp-sticky-nav .cmp-dropdown {
    width: 100%;
  }
  .cmp-specs__value {
    font-size: 16px;
    line-height: 22px;
  }
  .cmp-specs__col {
    padding: 20px;
  }
  .cmp-cta-wrap {
    padding: 20px 0px 70px;
  }

  .offers-warranty__heading,
  .offers-slide__title,
  .offers-cta__heading {
    font-size: 30px;
  }
  .offers-cta__images img {
    width: 48%;
    height: 400px;
  }
  .offers-slide__img-wrap {
    height: 500px;
  }
  .warranty-hero__title {
    font-size: 48px;
  }
  .warranty-hero {
    height: 600px;
  }
  .wc-section .wc-items {
    gap: 20px;
  }
  .wc-section .wc-image {
    height: 380px;
  }
  .wzc-section .wzc-content {
    padding: 60px 40px;
  }
  .wzc-section .wzc-title {
    font-size: 35px;
  }
  .wan-section {
    padding: 80px 0;
  }
  .wan-section .wan-header {
    margin-bottom: 10px;
  }
  .wan-section .wan-title {
    font-size: 42px;
  }
  .wan-section .wan-tab__label {
    font-size: 18px;
  }
  .wsp-section {
    padding: 80px 0;
  }
  .wsp-section .wsp-title {
    font-size: 35px;
  }
  .wsp-section .wsp-image {
    height: 600px;
  }
  .wm-section {
    padding: 80px 0;
  }
  .wm-section .wm-title {
    font-size: 42px;
  }
  .wm-section .wm-nav {
    gap: 32px;
  }
  .wcp-section,
  .wnc-section,
  .wrc-section,
  .wdb-section {
    padding: 80px 0;
  }

  .wcp-section .wcp-title,
  .wnc-section .wnc-title,
  .wrc-section .wrc-title {
    font-size: 35px;
  }
  .wdb-section .wdb-content {
    padding: 30px;
  }
  .wdb-section .wdb-accent {
    margin: 0 0 10px;
  }
  .wdb-section .wdb-title {
    font-size: 30px;
  }
  .wc-section .wc-item__title {
    font-size: 24px;
  }
  .wc-section .wc-item__period {
    font-size: 20px;
  }
  .wc-section .wc-item__text {
    gap: 10px;
  }
  .wc-section .wc-item__desc {
    font-size: 16px;
    line-height: 26px;
  }
  .wc-section .wc-body {
    margin-top: 0px;
  }
  .wc-section .wc-title {
    font-size: 40px;
  }
  .wzc-section .wzc-card .row,
  .wzc-section .wzc-image {
    min-height: 370px;
  }
  .wzc-section .wzc-accent {
    margin: 0 0 15px;
  }
  .wan-section .wan-body {
    width: 100%;
  }
  .wan-section .wan-panels {
    padding-left: 0px;
  }
  .wnc-section {
    padding-top: 0;
  }
  .wnc-section .wnc-card__image-wrap {
    height: 190px;
  }
  .wnc-col {
    flex: 0 0 auto;
    width: 33%;
  }
  .wnc-grid {
    justify-content: center;
  }
  .wdb-section .wdb-image,
  .wdb-section .wdb-card .row {
    min-height: 350px;
  }
  .faq-tabs-section {
    padding: 70px 0;
  }

  .faq-tabs-section .faq-tabs-title {
    font-size: 42px;
  }
  .faq-contact-section {
    padding: 0px 0 100px;
  }

  .faq-contact-section .faq-contact-left,
  .faq-contact-section .faq-contact-right {
    height: auto;
    min-height: 480px;
  }

  .faq-contact-section .faq-contact-left__heading {
    font-size: 34px;
  }
  .faq-panels-col {
    width: 100%;
  }

  .pa-panels .pa-panel:hover {
    flex-grow: 1.5;
  }
  .pa-panel.is-active {
    flex-grow: 1.5;
  }
  .pa-panel__title {
    font-size: 24px;
  }
  .pa-panel__desc {
    font-size: 16px;
    line-height: 28px;
  }
  .pa-panel__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  }
  .pa-genuine {
    padding: 80px 0;
  }
  .pa-precision {
    padding: 80px 0;
    padding-top: 0;
  }
  .pa-counterfeit {
    padding: 64px 0;
  }
  .pa-identify {
    padding: 64px 0;
  }
  .pa-categories {
    padding: 64px 0;
  }
  .pa-genuine__title,
  .pa-precision__title,
  .pa-counterfeit__title,
  .pa-identify__title,
  .pa-report__title,
  .pa-categories__title {
    font-size: 35px;
  }
  .pa-panel {
    height: 480px;
  }
  .pa-identify__item {
    height: 460px;
  }
  .pa-identify__label {
    font-size: 30px;
  }
  .pa-identify__item-desc {
    font-size: 15px;
    line-height: 26px;
  }
  .pa-categories__slider .slick-prev {
    left: -10px;
  }
  .pa-categories__slider .slick-next {
    right: -10px;
  }
  .offers-slide__body ul {
    padding-left: 15px;
  }
  .cmp-slots__image {
    height: 150px;
  }
  .cmp-slots__col {
    padding: 20px 20px 0;
  }
  .cmp-slots__empty {
    padding: 60px 30px;
  }
  .svc-request__otp {
    padding: 15px;
  }
  body > .iti.iti--container .iti__country-list,
  body > .iti--container.iti--inside-container .iti__country-list {
    width: 200px !important;
    font-size: 12px;
    min-width: 200px !important;
  }
  .warranty-banner .about-banner__logo {
    width: 200px;
  }
  body.page-template-request-a-part > .iti.iti--container .iti__country-list,
  body.page-template-request-a-part
    > .iti--container.iti--inside-container
    .iti__country-list,
  body.page-template-request-a-service > .iti.iti--container .iti__country-list,
  body.page-template-request-a-service
    > .iti--container.iti--inside-container
    .iti__country-list,
  body.page-template-request-a-quote > .iti.iti--container .iti__country-list,
  body.page-template-request-a-quote
    > .iti--container.iti--inside-container
    .iti__country-list,
  body.page-template-book-test-drive > .iti.iti--container .iti__country-list,
  body.page-template-book-test-drive
    > .iti--container.iti--inside-container
    .iti__country-list {
    width: 430px !important;
  }
  .flyout-panel__body a.mega-menu__vehicle-card-btn {
    width: auto;
    display: inline-block;
    align-content: center;
    margin-top: 20px;
    margin-left: 20px;
  }
  .svd-subnav {
    z-index: 3;
  }
}

@media (max-width: 991px) {
  .iti__country-list {
    max-height: 55vh;
  }
  .wc-section .wc-item__icon img {
    width: 100%;
  }
  .about-banner__heading {
    font-size: 52px;
  }

  .about-banner__inner {
    padding-bottom: 30px;
  }

  .about-banner__logo {
    width: 100px;
  }

  .ceo-section {
    padding: 80px 0 60px;
  }

  .ceo-name {
    font-size: 38px;
  }

  .ceo-role {
    font-size: 20px;
  }

  .ceo-text-col {
    padding-left: 20px;
  }

  .ceo-photo-wrapper {
    min-height: 500px;
  }

  .ceo-bg-watermark {
    display: none;
  }

  .ceo-signature {
    font-size: 42px;
    line-height: 70px;
  }

  .distributor-section {
    min-height: auto;
  }

  .distributor-image {
    width: 100%;
  }

  .distributor-red-shape {
    width: 230px;
    height: 140px;
  }

  .vision-slider-dots ul {
    min-width: 202px;
  }

  .vision-slide__underline {
    width: 95px;
    margin: 0 0 10px;
  }

  .vision-slide__text-panel {
    padding: 20px 30px;
  }

  /* Variant 2: reset radius for stacked mobile layout */

  .objectives-image-col {
    position: relative;
    width: 100%;
    height: 550px;
  }

  .objectives-image {
    position: relative;
    inset: auto;
    height: 420px;
  }

  .objectives-heading {
    font-size: 30px;
  }

  .objectives-number {
    font-size: 48px;
    line-height: 48px;
  }

  .objectives-title-text {
    font-size: 22px;
  }

  .objectives-section .row {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .core-values-cards {
    flex-wrap: wrap;
    gap: 20px;
  }

  .core-values-card {
    flex: 1 1 calc(33.333% - 14px);
    height: 180px;
    max-width: 31%;
    min-width: 31%;
  }

  .core-values-title {
    font-size: 38px;
    white-space: normal;
    text-align: center;
  }

  .facilities-content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .facilities-tabs {
    width: 100%;
  }

  .facilities-grid__item {
    height: 240px;
  }

  .capability-cards {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .capability-card {
    flex: 1 1 calc(50% - 10px);
    /*     height: 400px; */
    max-width: 48%;
  }
  .about-banner {
    height: 350px;
  }
  .about-banner__heading {
    font-size: 40px;
  }
  .about-banner__logo {
    width: 80px;
  }

  .section-title {
    font-size: 35px !important;
  }
  .vision-slider-dots ul li:not(:first-child) button::before {
    width: 151px;
  }
  .vl-section {
    padding: 60px 0;
  }
  .vl-title {
    font-size: 36px;
  }
  .vl-filter-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding: 20px;
    margin-bottom: 32px;
  }
  .vl-tabs-wrapper {
    margin-bottom: 32px;
  }
  .vl-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 24px;
  }
  .vl-card {
    gap: 30px;
  }
  .vl-card__name {
    font-size: 24px;
  }
  .vib-box--edge {
    width: 160px;
    height: 420px;
  }
  .vib-box--inner {
    width: 160px;
    height: 460px;
  }
  .vib-box.is-active {
    width: 340px;
    height: 520px;
  }
  .vib-box__underline {
    width: 140px;
    height: 5px;
    margin-top: -8px;
  }
  .vib-box__desc,
  .vib-box__desc p {
    font-size: 14px;
    line-height: 22px;
  }
  .vib-box__cta {
    width: 170px;
    height: 44px;
    font-size: 13px;
  }
  .vib-box__cta:hover {
    font-size: 14px;
  }
  .why-toyota-cta-group {
    flex-wrap: wrap;
  }
  .vib-container {
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .vib-box,
  .vib-box.is-active {
    min-height: 400px;
    height: 400px;
    width: calc(50% - 8px);
    flex: none;
  }
  .vl-card {
    flex: 0 0 48%;
  }
  .vl-card__btn--primary,
  .vl-card__btn--secondary {
    width: 100%;
  }
  .vl-card__spec {
    flex-direction: column;
  }
  .vib-section {
    height: auto;
    padding: 50px 30px;
  }
  .vib-box__content {
    bottom: 20px;
    left: 15px;
    right: 15px;
    gap: 15px;
    opacity: 1;
    transform: none;
    pointer-events: unset;
  }
  .vib-box__overlay {
    opacity: 1;
  }
  .vib-box__bg {
    object-position: top;
  }
  .svd-subnav__inner {
    padding: 0 30px;
  }
  .svd-subnav__list {
    gap: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .svd-subnav__list::-webkit-scrollbar {
    display: none;
  }
  .svd-subnav__buttons {
    gap: 10px;
  }
  .svd-vers__tab {
    font-size: 16px;
    min-width: 160px;
    height: 45px;
  }
  .svd-vers__tabs-wrap {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .svd-vers__gallery {
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
  }
  .svd-vers__main-col {
    height: 350px;
  }
  .svd-vers__right-col {
    height: auto;
  }
  .svd-vers__thumbs {
    flex: none;
    flex-direction: row;
    height: auto;
    /*     overflow-x: auto; */
    /*     overflow-y: visible; */
  }
  .svd-vers__thumb-btn {
    width: 24%;
    height: 100px;
  }
  .svd-vers__detail-bar {
    padding: 60px 24px 28px;
  }
  .svd-vers__detail-title {
    font-size: 24px;
  }
  .svd-perf__cards {
    flex-wrap: wrap;
  }
  .svd-perf__card {
    flex: 0 0 calc(50% - 5px);
    height: 350px;
    border-radius: 20px !important;
  }
  .svd-tech__image-wrap {
    height: 300px;
  }
  .svd-tech__nav {
    gap: 10px;
    justify-content: flex-start;
    display: grid;
    height: auto;
    grid-template-columns: 50% 50%;
	  border:none;
  }
	.svd-tech__tab span:before {
    bottom: -16px;
}
  .svd-tech__nav::-webkit-scrollbar {
    display: none;
  }
	.svd-tech__descriptions {
    margin-top: 20px;
}
  .svd-tech__desc,
  .svd-tech__desc p {
    font-size: 22px;
    line-height: 32px;
  }
  .svd-offers__title {
    font-size: 36px;
  }
  .svd-compare {
    height: auto;
  }
  .civ-layout {
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
  }
  .civ-image-col {
    height: auto;
  }
  .civ-image-wrap {
    height: 400px;
  }
  .civ-card__image-wrap {
    height: 250px;
  }
  .civ-inline .civ-card {
    padding: 9px;
  }
  .civ-inline .civ-card__body {
    justify-content: center;
    width: 90%;
  }
  .tab-360-viewer-content .viewer360-image {
    max-width: 85%;
  }
  .svd-hero__title {
    font-size: 50px;
  }
  .svd-vers__detail .inn_box {
    width: 95%;
    margin: auto;
    height: 350px;
  }
  .svd-vers__detail {
    align-content: center;
  }
  .civ-default {
    height: 300px;
  }
  .svd-versatility {
    padding: 50px 0;
  }
  .civ-hotspot[data-index="0"] {
    top: 48%;
    left: 9%;
  }
  .svd-vers__tabs {
    gap: 20px;
  }
  .svd-tech__tab {
    font-size: 14px;
    padding: 0;
    justify-content: center;
  }
  .svd-tech__nav {
    justify-content: space-between;
  }
  .svd-tech__desc,
  .svd-tech__desc p {
    font-size: 18px;
    line-height: 28px;
    max-width: 90%;
  }
  .svd-performance {
    padding: 50px 0 0;
  }
  .svd-technology {
    padding: 50px 0;
  }
  .svd-compare__deco {
    width: 190px;
    height: 58%;
    top: 24%;
  }
  .svd-compare__deco--right {
    width: 190px;
  }
  .svd-offers,
  .svd-cta {
    height: 300px;
  }
  .svd-cta .col-md-5 {
    flex: 0 0 auto;
    width: 60%;
  }
  .civ-inline {
    position: fixed;
    z-index: 999;
    transform: translateX(100%);
    transition: 0.5s all ease;
    border-radius: 0px;
    padding: 100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    grid-template-columns: auto;
    gap: 10px;
  }
  .civ-inline.is-open,
  .svd-vers__detail.is-active {
    transform: translateX(0%);
  }
  .civ-card__close,
  .svd-vers__detail-close {
    position: fixed;
  }
  .svd-vers__detail {
    position: fixed;
    z-index: 999;
    top: 0;
    transform: translateX(100%);
    transition: 0.5s all ease;
  }
  .cmp-slots__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cmp-slots__col.cmp-slots__col--filled {
    width: 49%;
  }
  .cmp-slots__col {
    min-height: auto;
  }

  .cmp-specs__col {
    padding: 20px 0;
  }

  /* Show label in every column on mobile */
  .cmp-specs__label {
    display: block !important;
  }
  .cmp-specs__row {
    height: 100px;
  }
  .cmp-sticky-nav__inner {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .cmp-hero::before {
    height: 380px;
  }
  .table_inn,
  .cmp-sticky-nav .box {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .cmp-sticky-nav .cmp-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 90%;
  }

  .offers-warranty {
    padding: 70px 50px;
  }
  .offers-warranty__row {
    min-height: auto;
    flex-direction: column;
  }

  .offers-warranty__img-col {
    height: 450px;
    min-height: 450px;
    width: 100%;
  }

  .offers-warranty__content {
    padding: 40px;
    text-align: center;
    padding-bottom: 0;
  }
  .offers-warranty__underline,
  .offers-cta__underline {
    margin: auto;
    margin-bottom: 20px;
  }
  .offers-warranty__btns {
    justify-content: center;
  }

  .offers-warranty__content-col {
    width: 100%;
  }

  .offers-warranty__heading {
    font-size: 28px;
  }

  .offers-slide .row {
    flex-direction: column;
  }

  .offers-slide__img-col {
    padding-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }

  .offers-slide__img-wrap {
    height: 420px;
    border-radius: 16px;
  }

  .offers-slide__content-col {
    width: 100%;
  }

  .offers-slide__title {
    font-size: 28px;
  }

  .offers-slider__arrow {
    width: 52px;
    height: 52px;
  }

  .offers-slider__arrow--next {
    right: 35px;
  }

  .offers-slider__arrow--prev {
    left: -20px;
  }
  .offers-slider__arrow {
    top: 19%;
  }

  .offers-cta__heading {
    font-size: 28px;
  }

  .offers-slider .slick-slide {
    margin: 0 30px;
  }
  .offers-slider .slick-list {
    margin: 0 -30px;
  }

  .offers-cta {
    padding-bottom: 70px;
    margin-top: 70px;
  }

  .offers-slide__img-wrap img {
    object-fit: contain;
    background: #000;
  }
  .offers-cta .row {
    flex-direction: column-reverse;
  }
  .offers-cta .row .col-md-6 {
    width: 100%;
  }
  .offers-cta .row .col-md-6.offers-cta__images-col {
    width: 80%;
    margin-bottom: 100px;
  }
  .offers-cta__content {
    text-align: center;
  }
  .wan-section .wan-sidebar {
    gap: 20px;
    border-left: 0;
    padding: 0 0 16px;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
  }
  .wan-section .wan-tab {
    padding: 0 0 12px;
    width: 48%;
    justify-content: center;
  }
  .wan-section .wan-tab span {
    position: relative;
  }
  .wan-section .wan-tab.is-active span::before {
    top: auto;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 100%;
    height: 3px;
    border-radius: 0;
  }
  .wan-section .wan-tab__label {
    font-size: 16px;
  }
  .wan-section .wan-tab__icon {
    width: 26px;
    height: 26px;
  }
  .wc-section .wc-body {
    margin-top: 40px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .wc-section .wc-items {
    gap: 40px;
    text-align: center;
  }
  .wc-section .wc-image {
    height: 420px;
  }
  .wzc-section .wzc-card .row {
    min-height: 0;
  }
  .wzc-section .wzc-image,
  .wzc-section .wzc-image-col {
    min-height: 0;
  }
  .wzc-section .wzc-image {
    height: 300px;
    min-height: 0;
  }
  .wzc-section .wzc-content {
    padding: 30px;
    text-align: center;
  }
  .wsp-section .wsp-image {
    height: 460px;
  }
  .wm-section .wm-header {
    margin-bottom: 40px;
  }
  .wcp-section .wcp-header,
  .wnc-section .wnc-header {
    margin-bottom: 40px;
  }

  .wnc-section .wnc-nav-wrap {
    margin-bottom: 36px;
    width: 100%;
    border: navajowhite;
  }
  .wnc-section .wnc-nav {
    justify-content: center;
    gap: 20px;
    min-height: 55px;
    padding: 0 4px;
  }
  .wnc-section .wnc-tab {
    white-space: nowrap;
    padding: 0 4px;
    font-size: 16px;
  }
  .wnc-section .wnc-card__image-wrap {
    height: 220px;
  }

  .wrc-section .wrc-image {
    height: 100%;
  }

  .wdb-section .wdb-card .row {
    min-height: 0;
  }
  .wdb-section .wdb-image {
    height: 300px;
    min-height: 0;
  }
  .wdb-section .wdb-content {
    padding: 30px;
    text-align: center;
  }
  .wc-section .wc-item__icon {
    margin: auto;
  }
  .wc-section .wc-item__text {
    justify-content: center;
    width: 100%;
  }
  .wzc-section .wzc-accent {
    margin: 15px auto;
  }

  .wzc-section .wzc-desc {
    max-width: 100%;
  }
  .wsp-section .wsp-body {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .wm-section .wm-nav-wrap {
    width: 100%;
  }
  .wm-section .wm-desc {
    width: 100%;
  }

  .wcp-section .wcp-step-col:not(:last-child) .wcp-step__icon-wrap::after {
    display: none;
  }

  .wnc-section .wnc-tab.is-active::after {
    bottom: -5px;
  }

  .wnc-section .wnc-card__title {
    font-size: 20px;
  }

  .wnc-col {
    width: 50%;
  }
  .wrc-section .wrc-image-wrap {
    width: 80%;
  }
  .wrc-section .wrc-image-col {
    margin: 0;
  }
  .wdb-section .wdb-accent {
    margin: 10px auto;
  }

  .wdb-section .wdb-desc {
    max-width: 100%;
  }

  .wdb-section .wdb-btn {
    margin: auto;
  }

  .faq-tabs-section .faq-tabs-header {
    margin-bottom: 36px;
  }

  .faq-tabs-section .faq-nav-wrap {
    margin-bottom: 32px;
  }

  .faq-tabs-section .faq-nav {
    gap: 20px;
    min-height: auto;
  }

  .faq-tabs-section .faq-tab {
    height: 44px;
    font-size: 16px;
  }

  .faq-tabs-section .faq-tab.is-active::after {
    bottom: -2px;
  }
  .faq-contact-section .faq-contact-left {
    min-height: 300px;
  }

  .faq-contact-section .faq-contact-right {
    min-height: 0;
    padding: 36px 24px;
  }

  .faq-contact-section .faq-contact-left__heading {
    font-size: 32px;
  }
  .pa-genuine__media img {
    height: 360px;
  }
  .pa-genuine__accent {
    margin-bottom: 20px;
  }
  .pa-panels {
    flex-direction: column;
  }
  .pa-panel {
    flex: 1 1 auto !important;
    height: 280px;
  }
  .pa-panel.is-active,
  .pa-panels:hover .pa-panel:hover {
    flex-grow: 1 !important;
  }
  .pa-identify__grid {
    gap: 20px;
  }
  .pa-identify__item {
    height: 400px;
  }
  .pa-report__media {
    min-height: 320px;
    margin-bottom: 20px;
  }
  h2.pa-genuine__title,
  .pa-genuine__text {
    text-align: center;
  }

  .pa-genuine__accent {
    margin: auto;
    margin-bottom: 20px;
  }
  .pa-counterfeit .pa-cards {
    justify-content: center;
  }
  .pa-identify__label {
    font-size: 24px;
  }
  .pa-identify__item-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .svd-offers__content {
    gap: 15px;
  }
  .svc-request {
    padding: 60px 0 80px;
  }
  .svc-request__title {
    font-size: 38px;
  }
  .svc-request__card {
    padding: 32px 20px;
  }
  input.svc-request__input.svc-request__otp-input {
    font-size: 14px;
    text-align: left;
  }
  html.overflow {
    overflow: hidden;
  }
  .svd-vers__detail-close {
    left: unset !important;
    right: 10px !important;
  }
  .svc-request__otp {
    width: 100%;
  }
  body > .iti.iti--container .iti__country-list,
  body > .iti--container.iti--inside-container .iti__country-list {
    width: 310px !important;
    font-size: 12px;
    min-width: 200px !important;
  }
  .warranty-banner .about-banner__logo {
    width: 130px;
  }
  body.page-template-request-a-part > .iti.iti--container .iti__country-list,
  body.page-template-request-a-part
    > .iti--container.iti--inside-container
    .iti__country-list,
  body.page-template-request-a-service > .iti.iti--container .iti__country-list,
  body.page-template-request-a-service
    > .iti--container.iti--inside-container
    .iti__country-list,
  body.page-template-request-a-quote > .iti.iti--container .iti__country-list,
  body.page-template-request-a-quote
    > .iti--container.iti--inside-container
    .iti__country-list,
  body.page-template-book-test-drive > .iti.iti--container .iti__country-list,
  body.page-template-book-test-drive
    > .iti--container.iti--inside-container
    .iti__country-list {
    width: 310px !important;
  }
  .col-md-3.svc-request__field {
    width: 50%;
  }
  .svc-request__date-wrap {
    overflow: hidden;
  }
  .cmp-sticky-nav:has(.cmp-sticky-nav__item:not(:empty))::before {
    height: 80%;
  }
  .cmp-sticky-nav__item {
    gap: 10px;
  }
  .cmp-specs__grid,
  .cmp-sticky-nav__inner {
    width: 800px;
  }
  .table_inn::-webkit-scrollbar,
  .cmp-sticky-nav .box::-webkit-scrollbar {
    height: 2px;
  }
}

@media (max-width: 768px) {
  .warranty-hero__title {
    font-size: 32px;
  }
  .warranty-hero {
    height: 500px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  html:has(.iti__selected-flag[aria-expanded="true"]) {
    overflow: hidden;
  }
  .wm-section .wm-card__icon {
    justify-content: center;
  }
  .wcp-section .wcp-step__icon-wrap {
    margin-bottom: 20px;
  }
  .wnc-section .wnc-header {
    margin-bottom: 10px;
  }
  nav.navbar.navbar-expand-lg.px-4.container.mx-auto.w-100 {
    padding: 10px 15px !important;
  }
  .vision-slider-dots ul li:not(:first-child) button::before {
    width: 80px;
  }
  .about-banner__heading {
    font-size: 40px;
  }

  .ceo-section {
    padding: 50px 0px;
  }

  .ceo-section .section-title,
  .vision-section .section-title,
  .facilities-section .section-title,
  .capability-section .section-title {
    font-size: 25px !important;
  }
  .ceo-name-block,
  .ceo-message,
  .ceo-signature {
    text-align: center;
  }

  .ceo-photo-col {
    margin-bottom: 40px;
  }

  .ceo-photo-wrapper {
    margin: 0 auto;
    min-height: 400px;
  }
  .ceo-photo {
    width: 100%;
    height: 100%;
  }
  .ceo-text-col {
    padding-top: 0;
  }

  .ceo-name {
    font-size: 32px;
  }

  .ceo-role {
    font-size: 18px;
  }

  .ceo-signature {
    font-size: 36px;
    line-height: 60px;
  }

  .ceo-toyota-watermark-text {
    font-size: 80px;
  }

  .ceo-toyota-watermark {
    transform: none;
    top: unset;
    bottom: -5px;
    right: 0;
    left: 0;
    width: auto;
    height: auto;
    text-align: center;
  }

  .distributor-heading {
    font-size: 25px;
  }

  .distributor-body p,
  .distributor-body {
    font-size: 16px;
  }

  .distributor-red-shape {
    width: 200px;
    height: 130px;
    top: 25px;
  }

  .vision-section {
    padding: 60px 0;
  }

  .vision-slider {
    margin-top: 40px;
  }

  .vision-slide__text-panel {
    padding: 30px 15px;
  }

  .vision-slide__title {
    font-size: 25px;
  }

  .vision-slide__desc {
    font-size: 16px;
    line-height: 26px;
  }

  .vision-slide .row {
    flex-direction: column-reverse;
  }
  .vision-slide--variant2 .row {
    flex-direction: column;
  }
  .vision-slider .slick-list {
    border-radius: 0;
  }
  .vision-slide--variant2 .vision-slide__image-panel,
  .vision-slide__image-panel {
    border-radius: 0px;
  }

  .vision-slide--variant2 .vision-slide__text-panel,
  .vision-slide__text-panel {
    border-radius: 0 0 20px 20px;
  }

  .vision-slide__text-panel {
    min-height: 300px !important;
  }

  .vision-slider-dots ul {
    min-width: 130px;
  }

  .vision-slider-dots {
    margin-top: 30px;
  }

  .objectives-image-col {
    height: 300px;
  }
  .vision-slide__img {
    height: 250px;
  }

  .vision-slide__desc,
  .vision-slide__desc p {
    font-size: 14px;
    line-height: 26px;
  }
  .vision-slide__text-panel,
  .vision-slide__image-panel {
    min-height: auto;
  }
  .objectives-heading {
    font-size: 26px;
  }

  .objectives-number {
    font-size: 36px;
    line-height: 36px;
  }

  .objectives-title-text {
    font-size: 18px;
  }

  .objectives-desc p,
  .objectives-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .core-values-section {
    padding: 70px 0;
    padding-bottom: 200px;
  }

  .core-values-card {
    flex: 1 1 calc(50% - 10px);
    height: 160px;
  }

  .core-values-inner {
    gap: 50px;
  }

  .core-values-title {
    font-size: 25px;
  }

  .core-values-underline,
  .section-title-underline {
    width: 100px;
  }
  .core-values-card {
    max-width: 75%;
    min-width: 75%;
  }
  .facilities-section {
    padding: 70px 0;
  }

  .facilities-tab {
    padding: 20px 24px;
  }

  .facilities-tab__title {
    font-size: 18px;
  }

  .facilities-grid__item {
    width: 100%;
    height: 220px;
  }

  .facilities-tab__title {
    font-size: 16px;
  }

  .facilities-tab__desc p,
  .facilities-tab__desc {
    font-size: 14px;
    line-height: 26px;
  }

  .capability-section {
    padding: 70px 0;
    padding-top: 0;
  }

  .capability-card {
    flex: 1 1 100%;
    height: 430px;
    max-width: 100%;
    padding: 30px 20px;
  }

  .about-banner__inner {
    padding-bottom: 30px;
  }
  .about-banner .row {
    gap: 20px;
  }
  .about-banner__logo {
    width: 60px;
  }
  .about-banner__heading {
    font-size: 30px;
  }
  .about-banner__underline {
    width: 100px;
  }

  .vl-section {
    padding: 40px 0;
  }
  .vl-title {
    font-size: 28px;
  }
  .vl-header {
    margin-bottom: 32px;
  }
  .vl-filter-bar {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .vl-tabs-wrapper {
    height: auto;
    min-height: 60px;
  }
  .vl-tabs {
    gap: 20px;
    padding: 0;
    padding-bottom: 20px;
    flex-direction: column;
    width: 100%;
  }
  .vl-tab {
    font-size: 20px;
    padding: 0;
    border: none;
    justify-content: center;
  }
  .vl-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 20px;
  }
  .vl-card {
    gap: 24px;
  }
  .vl-card__image-wrap {
    height: 180px;
  }
  .vl-card__btn {
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }
  .vib-section {
    padding: 50px 15px;
  }
  .vib-box,
  .vib-box.is-active {
    flex: 100%;
  }
  .vib-box__title {
    font-size: 22px;
    line-height: 30px;
  }
  .vib-box__underline {
    width: 120px;
    height: 4px;
    margin-top: -6px;
  }
  .vib-box__desc,
  .vib-box__desc p {
    font-size: 14px;
    line-height: 20px;
  }
  .vib-box__cta {
    width: 180px;
    height: 42px;
    font-size: 13px;
  }
  .why-toyota-cta-group {
    flex-wrap: unset;
  }
  .why-toyota-cta {
    min-width: 160px !important;
    height: 43px !important;
    width: 160px !important;
  }
  .vehicle-banner .why-toyota-banner-inner {
    background: transparent !important;
  }
  .svd-hero {
    height: 350px;
  }
  .svd-hero__title {
    font-size: 30px;
  }
  .svd-hero__content {
    gap: 10px;
  }
  .svd-hero__underline {
    width: 100px;
  }
  .svd-subnav {
    height: 100px;
  }
  .svd-subnav__inner {
    padding: 0 15px;
  }
  .svd-subnav__list {
    gap: 20px;
  }
  .svd-subnav__link {
    font-size: 14px;
  }
  .svd-subnav__brochure,
  .svd-subnav__testdrive {
    font-size: 13px;
    height: 40px;
  }
  .svd-subnav__testdrive {
    min-width: 160px;
  }
  .svd-subnav .box {
    gap: 10px;
  }
  .svd-subnav__brochure {
    width: 189px;
  }
  .svd-subnav__testdrive:hover {
    font-size: 14px;
  }
  .svd-vers__tabs-wrap {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .svd-vers__tabs {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .svd-vers__tab {
    font-size: 15px;
    min-width: auto;
    height: 45px;
    padding: 8px 10px;
  }
  .svd-vers__main-col {
    height: 280px;
  }
  .svd-vers__detail-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 50px 20px 24px;
  }
  .svd-vers__detail-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .svd-vers__detail-desc {
    font-size: 13px;
  }
  .svd-vers__arrow {
    width: 38px;
    height: 38px;
  }
  .svd-vers__thumbs {
    gap: 6px;
  }
  .svd-vers__thumb-btn {
    width: 90px;
    min-width: 90px;
    height: 68px;
    flex: none;
  }
  .svd-perf__card {
    flex: 0 0 100%;
    height: 400px;
    border-radius: 20px !important;
  }
  .svd-perf__card-title {
    font-size: 24px;
    line-height: 28px;
  }
  .svd-perf__card-desc {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
  }
  .svd-performance {
    padding: 50px 10px 0px;
  }
  .svd-tech__image-wrap {
    height: 250px;
    margin-top: 30px;
  }
  .svd-tech__tab {
    font-size: 14px;
    min-width: max-content;
    justify-content: center;
  }
  .svd-tech__desc,
  .svd-tech__desc p {
    font-size: 18px;
    line-height: 28px;
  }
  .svd-technology {
    padding: 50px 0;
  }
  .svd-offers {
    height: 400px;
  }
  .svd-offers__title {
    font-size: 28px;
    text-align: center;
  }
  .svd-compare__desc,
  .svd-compare__desc p {
    font-size: 18px;
    line-height: 28px;
  }
  .svd-cta {
    height: auto;
    min-height: 400px;
    padding: 60px 0;
  }
  .svd-cta__title {
    font-size: 28px;
  }
  .svd-cta__buttons {
    flex-direction: column;
  }
  .section-title {
    font-size: 30px !important;
  }
  .section-title-wrap {
    margin-bottom: 30px !important;
  }
  .svd-vers__main-image-wrap {
    height: 100%;
  }
  .svd-vers__main-col {
    height: 200px;
  }
  .svd-vers__swatches-bar,
  .civ-swatches,
  .tab-360-viewer-content .viewer360-swatches {
    top: 10px;
    gap: 10px;
  }
  .svd-vers__swatch,
  .civ-swatch-btn,
  .tab-360-viewer-content .viewer360-swatch {
    width: 16px;
    height: 16px;
  }
  .svd-vers__thumb-btn {
    width: 49.3% !important;
    min-width: 49.3% !important;
    height: 100px;
  }
  .svd-vers__detail .inn_box {
    height: 300px;
    overflow: visible;
    position: unset;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .svd-vers__detail-bar {
    text-align: center;
    padding: 15px;
    background: no-repeat;
    position: relative;
  }
  .svd-vers__detail-desc {
    max-width: 100%;
  }
  .svd-vers__detail-arrows {
    align-self: center;
  }
  .svd-vers__detail .inn_box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #0000008c;
  }
  .civ-default {
    height: 100%;
  }
  .civ-hotspot__dot {
    width: 8px;
    height: 8px;
  }
  .civ-hotspot__ring--mid {
    width: 22px;
    height: 22px;
  }

  .civ-hotspot__ring--outer {
    width: 35px;
    height: 35px;
  }
  .tab-360-viewer-content .viewer360-stage {
    height: 220px;
  }
  .civ-inline {
    padding: 10px;
    padding-top: 70px;
  }
  .civ-card__image-wrap {
    height: 150px;
  }
  .civ-card__desc {
    font-size: 14px;
    line-height: 24px;
  }
  .civ-inline__card-col {
    align-items: flex-start;
  }
  .civ-inline .civ-card__body {
    width: 100%;
    text-align: center;
  }
  .civ-inline .civ-card__nav {
    justify-content: center;
  }
  .svd-vers__detail-image {
    position: relative;
    z-index: 1;
  }
  .svd-tech__indicator {
    display: none;
  }
  .svd-tech__desc,
  .svd-tech__desc p {
    max-width: 100%;
    margin: 0;
  }
  .svd-tech__image-wrap {
    height: 150px;
  }
    .svd-compare {
        padding: 0px 15px;
        padding-top: 150px;
    }
  .svd-compare__deco {
    top: 0px;
    width: 200px;
    height: 40%;
  }
  .svd-compare__content {
    width: 100%;
  }
  .svd-cta .col-md-5 {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
  }
  .svd-cta .svd-cta__underline {
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .svd-cta__bg-img {
    object-position: 90% 100%;
  }
  .svd-cta {
    min-height: auto;
    padding: 50px 0;
  }
  .cmp-hero__title {
    font-size: 36px;
  }
  .cmp-hero__subtitle {
    font-size: 15px;
  }
  .cmp-specs__heading {
    font-size: 26px;
  }
  .cmp-slots__name {
    font-size: 24px;
  }

  .cmp-slots__grid,
  .cmp-specs {
    padding: 0 16px;
  }
  .cmp-slots__col.cmp-slots__col--filled {
    width: 100%;
    padding: 0;
  }
  .cmp-slots__grid {
    gap: 30px;
    padding: 0 10px;
  }
  .cmp-specs__grid,
  .cmp-sticky-nav__inner {
    width: 800px;
  }
  .cmp-specs__diff-toggle {
    flex-direction: column;
  }
  .offers-warranty {
    padding: 50px 15px;
  }
  .offers-warranty__content {
    padding: 40px 10px;
    padding-bottom: 0;
  }
  .offers-warranty__img-col {
    height: 300px;
    min-height: 300px;
    width: 100%;
  }
  .offers-warranty__heading {
    font-size: 22px;
  }
  .btn-pill-outline {
    font-size: 14px;
    height: 42px;
  }
  .offers-slide__title {
    font-size: 24px;
  }

  .offers-slide__subtitle {
    font-size: 18px;
  }

  .offers-slide__meta-value {
    font-size: 20px;
  }

  .offers-cta__heading {
    font-size: 24px;
  }

  .offers-cta__subtitle {
    font-size: 20px;
  }
  .offers-slider .slick-slide {
    margin: 0 10px;
  }
  .offers-slider .slick-list {
    margin: 0 -10px;
  }
  .offers-slide__img-wrap {
    height: 400px;
  }
  .offers-slider__arrow {
    top: 16%;
    width: 42px;
    height: 42px;
  }
  .offers-slider__arrow--prev {
    left: -10px;
  }
  .offers-slider__arrow--next {
    right: 10px;
  }
  .offers-cta {
    padding-bottom: 60px;
    margin-top: 50px;
    padding-top: 50px;
  }
  .offers-cta .row .col-md-6.offers-cta__images-col {
    width: 100%;
  }
  .offers-cta__images img {
    width: 47.5%;
    height: 350px;
  }
  .wc-section .wc-title {
    font-size: 32px;
  }
  .wc-section .wc-item__title {
    font-size: 24px;
  }
  .wc-section .wc-item__period {
    font-size: 20px;
  }
  .wc-section .wc-image {
    height: 320px;
  }
  .wzc-section .wzc-card {
    border-radius: 16px;
  }
  .wzc-section .wzc-image {
    height: 260px;
  }
  .wzc-section .wzc-content {
    padding: 40px 24px;
  }
  .wzc-section .wzc-title {
    font-size: 32px;
  }
  .wzc-section .wzc-accent {
    width: 120px;
    height: 4px;
    margin-bottom: 24px;
  }
  .wan-section {
    padding: 64px 0;
  }
  .wan-section .wan-title {
    font-size: 32px;
  }
  .wan-section .wan-card {
    padding: 28px 24px;
    border-radius: 16px;
  }
  .wan-section .wan-card__head {
    gap: 16px;
    margin-bottom: 22px;
  }
  .wan-section .wan-card__title {
    font-size: 20px;
  }
  .wsp-section {
    padding: 64px 0;
  }
  .wsp-section .wsp-title {
    font-size: 32px;
  }
  .wsp-section .wsp-accent {
    width: 120px;
    height: 4px;
    margin-bottom: 16px;
  }
  .wsp-section .wsp-desc {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  .wsp-section .wsp-card {
    padding: 15px;
    border-radius: 16px;
  }
  .wsp-section .wsp-card__head {
    gap: 14px;
  }
  .wsp-section .wsp-card__icon {
    width: 48px;
    height: 48px;
  }
  .wsp-section .wsp-card__icon img {
    max-width: 26px;
    max-height: 26px;
  }
  .wsp-section .wsp-card__title {
    font-size: 20px;
  }
  .wsp-section .wsp-image-wrap {
    border-radius: 16px;
  }
  .wsp-section .wsp-image {
    height: 360px;
  }
  .wm-section {
    padding: 64px 0;
  }
  .wm-section .wm-title {
    font-size: 30px;
  }
  .wm-section .wm-accent {
    width: 120px;
    height: 4px;
    margin-bottom: 16px;
  }
  .wm-section .wm-desc {
    font-size: 16px;
    line-height: 28px;
  }
  .wm-section .wm-nav-wrap {
    margin-bottom: 36px;
    border: none;
  }
  .wm-section .wm-tab {
    white-space: nowrap;
    padding: 0 4px;
    font-size: 16px;
  }
  .wm-section .wm-card {
    padding: 28px 22px;
    text-align: center;
  }
  .wm-section .wm-card__title {
    font-size: 18px;
  }
  .wcp-section,
  .wnc-section,
  .wrc-section,
  .wdb-section {
    padding: 64px 0;
  }
  .wnc-section {
    padding-top: 0;
  }
  .wcp-section .wcp-title,
  .wnc-section .wnc-title,
  .wrc-section .wrc-title {
    font-size: 30px;
  }

  .wcp-section .wcp-accent,
  .wnc-section .wnc-accent,
  .wrc-section .wrc-accent,
  .wdb-section .wdb-accent {
    width: 120px;
    height: 4px;
  }

  .wcp-section .wcp-desc,
  .wnc-section .wnc-desc,
  .wrc-section .wrc-desc,
  .wdb-section .wdb-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .wcp-section .wcp-step__icon {
    width: 84px;
    height: 84px;
  }
  .wcp-section .wcp-step__icon img {
    width: 38px;
    height: 38px;
  }

  .wnc-section .wnc-card__image-wrap {
    height: 200px;
  }
  .wnc-section .wnc-card__title {
    font-size: 20px;
  }

  .wrc-section .wrc-image-wrap {
    border-radius: 16px;
  }
  .wrc-section .wrc-image {
    height: 280px;
  }
  .wrc-section .wrc-btn {
    justify-content: center;
  }

  .wdb-section .wdb-card {
    border-radius: 16px;
  }
  .wdb-section .wdb-image {
    height: 240px;
  }
  .wdb-section .wdb-content {
    padding: 32px 24px;
  }
  .wdb-section .wdb-title {
    font-size: 30px;
  }
  .wc-section {
    padding: 50px 0;
  }

  .wc-section .wc-desc {
    width: 100%;
  }

  .wc-section .wc-body {
    margin-top: 10px;
  }

  .wc-section .wc-item__icon {
    width: 64px;
    height: 60px;
  }

  .wc-section .wc-item__icon img {
    margin: auto;
  }
  .wan-section .wan-tab {
    width: 100%;
  }

  .wsp-section .wsp-card__meta-value ul li {
    font-size: 16px;
    line-height: 26px;
  }

  .wm-section .wm-nav {
    gap: 20px;
  }

  .wm-section .wm-tab.is-active::after {
    bottom: -10px;
  }
  .wnc-col {
    width: 100%;
  }
  .wrc-content {
    margin-top: 200px;
    text-align: center;
  }

  .wrc-section .wrc-accent {
    margin: 10px auto;
  }

  .wrc-section .wrc-input {
    width: 100%;
  }
  .faq-tabs-section {
    padding: 64px 0;
  }

  .faq-tabs-section .faq-tabs-title {
    font-size: 30px;
  }

  .faq-tabs-section .faq-tabs-accent {
    width: 120px;
    height: 4px;
    margin-bottom: 16px;
  }

  .faq-tabs-section .faq-tabs-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .faq-tabs-section .faq-item__trigger {
    min-height: 56px;
    padding: 14px 16px;
    gap: 12px;
  }

  .faq-tabs-section .faq-item__question {
    font-size: 15px;
  }

  .faq-tabs-section .faq-item__icon {
    width: 26px;
    height: 26px;
  }

  .faq-tabs-section .faq-item__body {
    padding: 0 16px 16px;
  }

  .faq-tabs-section .faq-item__content {
    font-size: 14px;
    line-height: 24px;
  }
  .faq-contact-section {
    padding: 0px 0 70px;
  }

  .faq-contact-section .faq-contact-left {
    min-height: 240px;
    border-radius: 12px;
  }

  .faq-contact-section .faq-contact-right {
    border-radius: 12px;
    padding: 28px 20px;
    gap: 24px;
  }

  .faq-contact-section .faq-contact-left__heading {
    font-size: 28px;
  }

  .faq-contact-section .faq-contact-left__accent {
    width: 120px;
    height: 4px;
  }

  .faq-tabs-section .faq-nav-wrap {
    border: none;
  }
  .pa-genuine {
    padding: 56px 0;
  }
  .pa-precision {
    padding: 56px 0;
    padding-top: 0;
  }
  .pa-counterfeit {
    padding: 48px 0;
  }
  .pa-identify {
    padding: 48px 0;
  }
  .pa-categories {
    padding: 48px 0;
  }
  .pa-genuine__title,
  .pa-precision__title,
  .pa-counterfeit__title,
  .pa-identify__title,
  .pa-report__title,
  .pa-categories__title {
    font-size: 30px;
  }
  .pa-genuine__media {
    margin-bottom: 28px;
  }
  .pa-panel__title {
    font-size: 24px;
  }
  .pa-panel__desc {
    font-size: 15px;
    line-height: 26px;
  }
  .pa-card {
    padding: 24px 18px;
    text-align: center;
  }
  .pa-identify__grid {
    flex-direction: column;
  }
  .pa-identify__item {
    height: 320px;
    max-width: 100%;
    min-width: 100%;
    flex: auto;
  }
  .pa-identify__label {
    font-size: 22px;
  }
  .pa-identify__header {
    margin-bottom: 32px;
  }
  .pa-report__form-wrap {
    padding: 28px 20px;
    gap: 20px;
  }
  .pa-report__intro {
    gap: 14px;
  }
  .pa-report__form {
    gap: 20px;
  }
  .pa-report__fields {
    gap: 14px;
  }
  .pa-report__form-row {
    flex-direction: column;
    gap: 14px;
  }
  .pa-categories__label {
    font-size: 20px;
    line-height: 26px;
  }
  .pa-hero-cta {
    text-align: left;
  }
  .pa-panel__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) -50%, #000 100%);
  }
  .pa-panel {
    height: 300px;
  }
  .pa-card__icon {
    justify-content: center;
  }
  .pa-categories__slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .pa-categories__slider .slick-next {
    right: 0px;
  }
  .pa-categories__slider .slick-prev {
    left: 0px;
  }
  .btn-pill-red:hover {
    font-size: 15px !important;
  }
  .offers-slide__content {
    padding-left: 15px;
  }
  .offers-slide__meta:before {
    width: 100%;
  }
  .svd-tech__desc,
  .svd-tech__desc p {
    max-width: 100%;
  }
  .cmp-slots__image {
    height: 100%;
  }
  .cmp-slots__col {
    width: 100%;
  }
  .pa-report__form .btn-pill-red {
    align-self: auto;
  }
  button.btn-pill-red.svc-request__submit {
    min-width: 100% !important;
  }
  .iti-mobile .iti--container {
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    position: fixed;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrc-modal__list {
    grid-template-columns: 200px 1fr;
    align-items: start;
    gap: 12px 24px;
  }
  .wrc-modal__list dt {
    margin-top: 0;
  }
  .wrc-modal__list dd {
    margin-bottom: 4px;
  }
  .wrc-modal {
    padding: 10px;
  }
  .wrc-modal__dialog {
    max-height: calc(100vh - 20px);
    border-radius: 12px;
  }
  .wrc-modal__head {
    padding: 14px 16px;
  }
  .wrc-modal__body {
    padding: 14px 16px;
  }
  .wrc-modal__title {
    font-size: 18px;
  }
  .wrc-modal__no-recalls {
    font-size: 16px;
    padding: 16px 4px;
  }
  .wrc-section .wrc-input.wrc-input--vin {
    width: 100%;
  }
  .wrc-field--phone {
    width: 100%;
  }
  .wrc-results__table thead th,
  .wrc-results__table tbody td {
    padding: 12px 14px;
    font-size: 14px;
  }
  .wrc-modal__list {
    grid-template-columns: 1fr;
  }
  .wrc-modal__list dt {
    margin-top: 4px;
  }
  .warranty-banner .about-banner__logo {
    width: 80px;
  }
  .cmp-cta-wrap .btn-pill-red:not(:last-child) {
    margin-bottom: 20px;
  }
  .cmp-cta-wrap {
    padding: 40px 0px 70px;
    display: block;
  }
  .svc-request__otp-row {
    justify-content: center;
  }
  input.svc-request__input.svc-request__otp-input {
    text-align: center;
  }
  .col-md-3.svc-request__field {
    width: 100%;
  }
  .cmp-slots__name-btn {
    height: auto;
  }
  .cmp-slots__chevron {
    top: 5px;
  }
  .svd-subnav__brochure {
    width: 40px;
  }
  .svd-subnav__buttons {
    flex-direction: row-reverse;
  }
  .svd-subnav__mobile-toggle svg {
    min-width: 12px;
  }
  .page-template-parts-accessories .about-banner__bg-img {
    object-position: left;
  }
  .pa-panel.is-active .pa-panel__desc {
    opacity: 0;
    max-height: 0;
  }
  .pa-panel__content {
    text-align: center;
  }
  .faq-tabs-section .faq-nav {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10px;
  }

  .faq-tabs-section .faq-tab span {
    position: relative;
  }
  .tab-360-viewer-content .viewer360-loader-text {
    font-size: 14px;
  }
	.svd-tech__nav {
    grid-template-columns: auto;
    justify-content: center;
}
	.svd-cta__btn--white {
    font-size: 14px;
    width: 200px;
	height:42px;
}
}

@media (max-width: 575px) {
  .flyout-vehicles__grid {
    grid-template-columns: 1fr;
  }

  .svd-subnav__testdrive:hover {
    font-size: 14px;
  }
  .svd-subnav__testdrive {
    font-size: 13px;
  }
  .svd-subnav__brochure {
    font-size: 13px;
  }
  .svd-subnav__mobile-toggle span {
    font-size: 13px;
  }
  .svd-subnav {
    height: 100px;
  }
  .svd-subnav__buttons {
    align-items: end;
  }
  .wzc-section .wzc-image {
    height: 220px;
  }
  .wzc-section .wzc-content {
    padding: 32px 20px;
  }
  .wzc-section .wzc-title {
    font-size: 26px;
  }
  .wc-section .wc-title {
    font-size: 28px;
  }
  .wc-section .wc-accent {
    width: 120px;
    height: 4px;
  }
  .wc-section .wc-image {
    height: 230px;
  }
  .wan-section {
    padding: 48px 0;
  }
  .wan-section .wan-title {
    font-size: 26px;
  }
  .wan-section .wan-accent {
    width: 120px;
    height: 4px;
    margin-bottom: 16px;
  }
  .wan-section .wan-card {
    padding: 20px;
  }
  .wan-section .wan-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .wan-section .wan-detail__label {
    font-size: 16px;
  }
  .wan-section .wan-detail__text p {
    font-size: 15px;
    line-height: 26px;
  }
  .wsp-section {
    padding: 48px 0;
  }
  .wsp-section .wsp-title {
    font-size: 26px;
  }
  .wsp-section .wsp-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .wsp-section .wsp-image {
    height: 280px;
  }
  .wm-section {
    padding: 48px 0;
  }
  .wm-section .wm-title {
    font-size: 26px;
  }
  .wm-section .wm-card {
    padding: 24px 20px;
  }
  .wcp-section,
  .wnc-section,
  .wrc-section,
  .wdb-section {
    padding: 48px 0;
  }
  .wnc-section {
    padding-top: 0;
  }

  .wcp-section .wcp-title,
  .wnc-section .wnc-title,
  .wrc-section .wrc-title,
  .wdb-section .wdb-title {
    font-size: 26px;
  }

  .wcp-section .wcp-step__icon {
    width: 72px;
    height: 72px;
  }
  .wcp-section .wcp-step__icon img {
    width: 32px;
    height: 32px;
  }

  .wnc-section .wnc-card__image-wrap {
    height: 180px;
  }

  .wrc-section .wrc-image {
    height: 220px;
  }

  .wdb-section .wdb-image {
    height: 200px;
  }
  .wdb-section .wdb-content {
    padding: 28px 20px;
  }
  .faq-tabs-section {
    padding: 48px 0;
  }

  .faq-tabs-section .faq-tabs-title {
    font-size: 26px;
  }
  .faq-contact-section {
    padding: 0px 0 50px;
  }
  .faq-contact-section .faq-contact-left__heading {
    font-size: 24px;
  }
  .pa-genuine__title,
  .pa-precision__title,
  .pa-counterfeit__title,
  .pa-identify__title,
  .pa-report__title,
  .pa-categories__title {
    font-size: 26px;
  }
  .pa-genuine__accent,
  .pa-precision__accent,
  .pa-counterfeit__accent,
  .pa-identify__accent,
  .pa-report__accent,
  .pa-categories__accent {
    width: 120px;
    height: 4px;
  }
  .pa-genuine__text,
  .pa-counterfeit__sub,
  .pa-identify__desc,
  .pa-report__desc {
    font-size: 14px;
    line-height: 26px;
  }
  .svc-request {
    padding: 40px 0 60px;
  }
  .svc-request__card {
    padding: 28px 16px;
    border-radius: 12px;
  }
  .svc-request__title {
    font-size: 28px;
    line-height: 1.2;
  }
  .svc-request__accent {
    width: 110px;
    height: 4px;
  }
  .svc-request__input,
  .svc-request__select {
    font-size: 16px;
    height: 48px;
    padding: 0 16px;
  }
  .svc-request__select {
    padding-right: 40px;
  }
  .svc-request__check-text {
    font-size: 15px;
    line-height: 1.5;
  }
  .svc-request__submit {
    width: 100%;
  }
  .svc-request__otp-row {
    flex-direction: column;
  }
  .svc-request__otp-request,
  .svc-request__otp-verify {
    width: 100%;
  }
  .svc-request__otp {
    margin-top: 16px;
    padding: 18px 18px 16px;
  }
  .svc-request__otp-row {
    flex-direction: column;
    gap: 10px;
  }
  .svc-request__otp-input,
  .svc-request__otp-request,
  .svc-request__otp-verify {
    width: 100%;
    flex: 1 1 auto;
  }
  .svc-request__radio-row {
    flex-direction: column;
    gap: 10px;
  }
  .svc-request__consents {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .iti__country-list {
    max-height: 50vh;
    width: calc(100vw - 24px);
  }
  body > .iti.iti--container,
  body > .iti--container.iti--inside-container {
    max-width: calc(100vw - 12px);
  }
  body > .iti.iti--container .iti__country-list,
  body > .iti--container.iti--inside-container .iti__country-list {
    width: calc(100vw - 24px);
    min-width: 0;
    max-width: calc(100vw - 24px);
    max-height: 50vh;
  }
}

@media (max-width: 400px) {
  .svd-compare__deco {
    width: 170px;
    height: 35%;
  }
  .svd-compare {
    padding-top: 140px;
  }
}