@charset "UTF-8";
:root {
  --hdr-h: 64px;
  --ghost: rgba(255, 255, 255, 0.1);
  --ink: #262626;
  --ink-2: #1f2937;
  --blue: #2563eb;
  --container: 1200px;
  --font-main: "ChevySans", "ChevySans", sans-serif;
}

/* ==========================================
   CHEVY SANS — MAIN FONTS
========================================== */
@font-face {
  font-family: "ChevySans";
  src: url("../fonts/ChevySans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ChevySans";
  src: url("../fonts/ChevySans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ChevySans";
  src: url("../fonts/ChevySans-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* ==========================================
   CHEVY SANS — CONDENSED (Legal / Disclaimer)
========================================== */
@font-face {
  font-family: "ChevySansCondensed";
  src: url("../fonts/ChevySans-CondensedRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ChevySansCondensed";
  src: url("../fonts/ChevySans-CondensedMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ChevySansCondensed";
  src: url("../fonts/ChevySans-CondensedItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* === base === */
* {
  box-sizing: border-box;
}

html {
  font-family: "ChevySans", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
button,
h6 {
  margin: 0;
}

body {
  margin: 0;
  font: inherit;
  color: #eaeaea;
  background: #fff;
}

*:not(html):not(body),
*:not(html):not(body)::before,
*:not(html):not(body)::after {
  font-family: inherit;
}

.container,
.tables {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 1200px) {
  .container,
  .tables {
    padding: 0 100px;
  }
}
@media (max-width: 1200px) {
  .container,
  .tables {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 992px) {
  .container,
  .tables {
    padding-left: 52px;
    padding-right: 52px;
  }
}
@media (max-width: 768px) {
  .container,
  .tables {
    padding-left: 52px;
    padding-right: 52px;
  }
}
@media (max-width: 576px) {
  .container,
  .tables {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 400px) {
  .container,
  .tables {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* === header === */
.site-header {
  position: relative;
  top: 0;
  z-index: 5;
  background: #f3f4f6;
  color: #222;
  padding: 10px 0;
}
.site-header .container {
  padding: 0 24px;
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

.hamburger {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 100;
  width: 54px;
  height: 44px;
  transition: background 0.2s ease;
}
.hamburger span {
  display: block;
  width: 36px;
  height: 2px;
  background: #262626;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger:focus {
  outline: none;
  box-shadow: none;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.logo svg {
  height: 28px;
  width: auto;
  fill: #262626;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.brand img {
  height: 38px;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 45px;
}

.nav__list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav__link {
  background: none;
  border: 0;
  font: 500 16px/1.2 ui-sans-serif, system-ui;
  color: var(--ink-2);
  padding: 8px 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
}
.nav__link:hover {
  color: #0e4180;
  border-bottom-color: #0e4180;
}

.nav__link[aria-expanded=true] {
  color: #0e4180;
  border-bottom-color: #0e4180;
}

.header__actions {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.masthead__cta_2 a {
  width: 100%;
}

.hdr-btn {
  height: 45px;
  width: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
  position: relative;
  margin-right: 5px;
}
.hdr-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.hdr-btn img {
  width: 45px;
  height: 40px;
}

/* === Account Modal === */
.account-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  max-height: 300px;
  height: auto;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}
.account-modal.active {
  transform: translateX(0);
}
.account-modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 24px 0;
}
.account-modal__close {
  border: none;
  cursor: pointer;
  color: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #262626;
  padding: 1px;
  transition: all 0.2s ease;
}
.account-modal__close:hover {
  background: #f3f4f6;
}
.account-modal__close:active {
  transform: scale(0.95);
}
.account-modal__close svg {
  display: block;
}
.account-modal__content {
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.account-modal__header-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.account-modal__avatar {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #262626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.account-modal__avatar svg {
  width: 24px;
  height: 24px;
  color: #262626;
}
.account-modal__title {
  font-size: 14px;
  font-weight: 600;
  color: #262626;
  margin: 0;
  line-height: 1.5;
}
.account-modal__separator {
  width: 100%;
  height: 1px;
  background: #d1d5db;
  /*margin: 0 0 32px;*/
}
.account-modal__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /*gap: 24px;*/
  width: 100%;
}
.account-modal__link {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  padding-left: 12px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #262626;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-top: 13px;
}
.account-modal__link:hover, .account-modal__link.active {
  border-left-color: #0077d9;
}
.account-modal__link:active {
  background: #f9fafb;
}
.account-modal__btn {
  display: none;
}

.account-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.account-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* mega shell */
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 45 !important;
}

.mega[hidden] {
  display: none;
}

.mega__wrap {
  padding: 64px 35px 44px 12px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 200px;
}

.for_desktop {
  display: block;
}

.for_mobile {
  display: none !important;
}

.mega__side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.mega-tab {
  display: block;
  color: #171717;
  text-decoration: none;
  font: 500 24px/1.1 ui-sans-serif, system-ui;
  padding-left: 0;
  line-height: 22px;
}

.mega__tab-item {
  padding: 3px 0;
  padding-left: 16px;
  border-left: 3px solid transparent;
}

.mega__tab-item:hover {
  border-left: 3px solid #0e4180;
}

.mega__tab-item.is-active {
  border-left: 2px solid #0077d9;
}

.mega__dealer {
  display: inline-block;
  margin-top: 42px;
  color: #262626;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 20px;
}

/* panes */
.mega__content {
  min-height: 280px;
}

.pane {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pane.is-active {
  display: grid;
}

.card {
  text-decoration: none;
  color: var(--ink);
  padding-top: 18px;
  display: grid;
  gap: 8px;
  text-align: center;
}

.card img {
  width: 96%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.card h4 {
  margin: 0;
  font: 700 14px/1.2 ui-sans-serif, system-ui;
}

.card p {
  margin: 0;
  font: 500 12px/1.2 ui-sans-serif, system-ui;
  color: #374151;
  margin-bottom: 20px;
}

.card .link {
  border-top: 1px solid #000000;
  margin-top: 8px;
  color: #0077d9;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.mega__viewall {
  position: absolute;
  top: 50px;
  right: 70px;
  color: #262626;
  text-decoration: underline;
  font-size: 12px;
}

.mobile_tabs {
  display: none;
}

/* === Sidebar Modal === */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.594);
  backdrop-filter: blur(0px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.sidebar-modal.active {
  transform: translateX(0);
}
.sidebar-modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 0.5rem;
  padding-top: 30px;
  padding-right: 10px;
  background: #ffffff;
}
.sidebar-modal__close {
  background: inherit;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-modal__close svg {
  display: block;
}
.sidebar-modal__nav {
  padding: 8px 0;
  padding-left: 24px;
}

.sidebar-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-parag {
  margin-top: 30px;
  padding-left: 34px;
}
.sidebar-parag h3 {
  font-size: 22px;
  font-weight: 500;
  color: #262626;
  margin: 0 0 8px 0;
}

.sidebar-menu__item {
  margin: 0;
  padding: 6.5px 0;
}

.sidebar-language {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  padding: 12px 0 4px 35px;
  text-transform: uppercase;
  margin-top: 5px;
}

.sidebar-language a {
  color: #0077d9;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  text-decoration: none;
}
.sidebar-language a:hover {
  color: #0e4180;
  text-decoration: none;
}

.sidebar-menu__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2px 12px 2px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #262626;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  position: relative;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.sidebar-menu__link:hover {
  border-color: #0e4180;
}
.sidebar-menu__link::before {
  display: none;
}
.sidebar-menu__link img,
.sidebar-menu__link svg {
  margin-left: auto;
  flex-shrink: 0;
}

.sidebar-submenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.sidebar-submenu.active {
  transform: translateX(0);
}
.sidebar-submenu__back {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  background: #f9fafb;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #0077d9;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sidebar-submenu__back:hover {
  background: #f3f4f6;
  padding-left: 20px;
}
.sidebar-submenu__back:hover svg {
  transform: translateX(-4px);
}
.sidebar-submenu__back:active {
  background: #e5e7eb;
}
.sidebar-submenu__back svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.sidebar-submenu__content {
  padding: 32px 24px;
}
.sidebar-submenu__content h3 {
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  /* Всегда есть место под border */
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.sidebar-submenu__content h3:first-child {
  margin-top: 0;
}
.sidebar-submenu__content h3:hover {
  border-color: #e5e7eb;
}
.sidebar-submenu__content a {
  display: block;
  padding: 14px 12px 14px 20px;
  color: #262626;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}
.sidebar-submenu__content a::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #0077d9;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sidebar-submenu__content a:hover {
  background: #f3f4f6;
  color: #0077d9;
}
.sidebar-submenu__content a:hover::before {
  opacity: 1;
}

@media (max-width: 1024px) {
  .pane {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .mega__wrap {
    grid-template-columns: 1fr;
  }
  .mega-tab {
    font-size: 22px;
  }
  .sticky-nav {
    display: none;
  }
  .nav {
    margin-left: 0;
    display: none;
  }
  .account-modal {
    max-width: 100%;
  }
}
.uz-logo {
  height: 32px;
}

.hdr-btn {
  background: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  color: #262626;
  border-radius: 8px;
}

/* === Sticky Navigation Bar === */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #f2f2f2;
  border-bottom: 1px solid #b3b3b3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding-bottom: 5px;
}

.sticky-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 56px;
}

.sticky-nav__item {
  position: relative;
  padding: 0 20px;
}

.sticky-nav__link {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 0px;
  color: #6b7280;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2.4px solid transparent;
  white-space: nowrap;
}
.sticky-nav__link.active {
  color: #006fc9;
  font-weight: 500;
  border-bottom-color: #006fc9;
}
.sticky-nav__link:hover {
  color: #0e4180;
  border-bottom-color: #0e4180;
}

/* === masthead === */
.masthead {
  position: relative;
  height: calc(100vh - var(--hdr-h));
  min-height: 580px;
  max-height: 850px;
  overflow: hidden;
  background: #000;
}

.masthead-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.6s ease-in-out;
}

.masthead-img#mhBase {
  z-index: 1;
  opacity: 1;
}

.masthead-img#mhOverlay {
  z-index: 2;
  opacity: 0;
}

.slide__overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  place-items: start start;
  padding: 24px 100px;
  color: #fff;
}

.masthead__title {
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 46px);
  margin: 0 0 16px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn--primary {
  background: #fff;
  color: #161616;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--ghost);
  color: #fff;
}

/* === progress / controlbar === */
.controlbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 100px 25px;
}

.segments {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.seg {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.seg__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #fff;
  transition: width 0.2s linear;
}

.controlbar__pause {
  width: 14px;
  height: 14px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.controlbar__pause::before,
.controlbar__pause::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 3px;
  background: #fff;
}

.controlbar__pause::before {
  left: 2px;
}

.controlbar__pause::after {
  right: 2px;
}

.controlbar__pause.is-paused::before,
.controlbar__pause.is-paused::after {
  display: none;
}

.controlbar__pause.is-paused {
  clip-path: polygon(25% 15%, 85% 50%, 25% 85%);
  background: #fff;
}

/* === footer === */
.site-footer {
  background: #0f0f0f;
}

.site-footer .container {
  padding: 20px;
}

.site-footer p {
  margin: 0;
  color: #bdbdbd;
  font-size: 14px;
  padding: 12px;
}

/* === responsive === */
@media (max-width: 768px) {
  .masthead {
    height: 580px;
  }
  .slide__overlay {
    padding: 16px;
  }
  .masthead__title {
    font-size: 26px;
  }
}
.categories-section {
  margin: 40px 0;
  padding: 40px 100px;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.category_item {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  gap: 12px;
  padding: 32px;
  text-decoration: none;
  color: #262626;
  text-decoration: none;
}
.category_item a {
  text-decoration: none;
  color: #0077d9;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}
.category_item h5 {
  width: 65%;
  font-size: 26px;
  color: #262626;
  text-decoration: none;
  margin-bottom: 32px;
  font-weight: 600;
}
.category_item span {
  margin-top: 10px;
  padding-top: 10px;
  color: #0077d9;
  height: 48px;
}
.category_item span i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  margin-left: 6px;
}
.category_item span img {
  margin-bottom: 16px;
}
.category_item:hover {
  background-color: #0077d9;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.category_item:hover .category_item-icon img {
  filter: brightness(0) invert(1);
}
.category_item:hover h5,
.category_item:hover a,
.category_item:hover span {
  color: #fff;
}

.offer-section {
  padding: 40px 100px;
}

.offer-tabs {
  width: 100%;
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin-top: 25px;
  margin-bottom: 0px;
}

.offer-tabs li:hover {
  font-size: 16px;
  font-weight: 500;
  color: #0e4180;
  border-bottom: 5px solid #0e4180;
}

.offer-section__content {
  height: auto;
  flex-direction: column;
  flex: 1;
  padding: 50px 0;
}

.offer-section__fullwidth,
.offer-section__content {
  width: 80vw;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.offer-banner-wrap {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.offer-section__title {
  text-align: center;
  font-size: 32px;
  color: #262626;
  font-weight: 500;
}

.offer-tabs li {
  width: 100%;
  cursor: pointer;
  padding: 8px 12px;
  color: #666666;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.offer-tabs li.is-active {
  border-bottom: 5px solid #0077d9;
  color: #0077d9;
}

.offer-banner__section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  padding: 0;
  overflow: hidden;
  background: #222222;
}
.offer-banner__section div {
  width: 100%;
}

.offer-banner__details {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 64px;
  background: #222222;
}

.offer-banner__image {
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}
.offer-banner__image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.gb-headline2 {
  font-size: clamp(46px, 4.6vw, 82px);
  line-height: 0.95;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
}

.gb-headline6 {
  color: #fff;
  font-size: clamp(24px, 2.1vw, 40px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gb-bullet-list {
  list-style: inside;
  padding: 0;
}

.gb-bullet-list li {
  font-size: 16px;
  line-height: 22px;
  font-weight: 800;
  color: #fff;
}

.chevy-offer-banner {
  display: grid;
  grid-template-columns: minmax(380px, 50%) 1fr;
  width: min(90vw);
  height: 80vh;
  min-height: 420px;
  max-height: 640px;
  margin: 0 auto 48px;
  background: #242424;
  color: #fff;
  overflow: hidden;
}

.chevy-offer-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 5vw 58px 4.5vw;
}

.chevy-offer-banner__eyebrow {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chevy-offer-banner__rate,
.chevy-offer-banner__defer {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.chevy-offer-banner__number {
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}

.chevy-offer-banner__copy {
  color: #fff;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.15;
  font-weight: 800;
}

.chevy-offer-banner__fine {
  margin: 4px 0 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.chevy-offer-banner__plus {
  margin: 20px 0 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.chevy-offer-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(100%, 330px);
  margin-top: 28px;
}

.chevy-offer-banner__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chevy-offer-banner__button--primary {
  background: #fff;
  color: #111;
  border: 2px solid #fff;
}

.chevy-offer-banner__button--primary:hover {
  background: #e9e9e9;
  border-color: #e9e9e9;
  color: #111;
}

.chevy-offer-banner__button--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.chevy-offer-banner__button--outline:hover {
  background: #fff;
  color: #111;
}

.chevy-offer-banner__media {
  position: relative;
  min-height: 420px;
}

.chevy-offer-banner__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 991px) {
  .chevy-offer-banner {
    grid-template-columns: 1fr;
    width: min(90vw);
    height: auto;
    max-height: none;
    min-height: 0;
    margin-bottom: 40px;
  }

  .chevy-offer-banner__content {
    order: 2;
    padding: 36px 22px 42px;
  }

  .chevy-offer-banner__media {
    order: 1;
    min-height: 280px;
  }

  .chevy-offer-banner__media img {
    min-height: 280px;
    max-height: 420px;
  }

  .chevy-offer-banner__actions {
    width: 100%;
    max-width: 390px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .chevy-offer-banner__eyebrow {
    font-size: 20px;
  }

  .chevy-offer-banner__number {
    font-size: 36px;
  }

  .chevy-offer-banner__copy {
    font-size: 13px;
  }

  .chevy-offer-banner__fine {
    font-size: 12px;
  }

  .chevy-offer-banner__plus {
    margin: 20px 0 14px;
    font-size: 16px;
  }

  .chevy-offer-banner__button {
    min-height: 46px;
    font-size: 14px;
  }
}

.meta .gb-bullet-list li {
  font-size: 14px;
  line-height: 20px;
  color: #262626;
}

.gb-fine-print {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

.masthead__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  max-width: 420px;
  gap: 24px;
  margin-top: 200px;
}

.masthead__cta_2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  max-width: 366px;
  gap: 18px;
  margin-top: 34px;
}

.offer-banner__details .masthead__cta_2 a,
.offer-banner__details .btn {
  min-height: 58px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px !important;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.main_photo {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead__title {
  font-size: 3rem;
  line-height: 1.1;
}

.masthead__offer p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.masthead__offer strong {
  font-size: 3rem;
  font-weight: 700;
}

.masthead__btn {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.masthead__btn a {
  white-space: nowrap;
  padding: 14px 120px;
}

.btn {
  display: inline-block;
  padding: 14px 46px;
  border-radius: 40px;
  font-weight: 600;
  text-align: center;
  width: auto;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: #fff;
  color: #262626;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 125%;
  transition: background 0.5s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 8px;
}

.btn--ghost {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 125%;
  transition: background 0.5s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 8px;
}

.trailboss-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.trailboss-section__image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.trailboss-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.trailboss-section__content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  padding-top: 40px;
  text-align: center;
  z-index: 2;
  color: #262626;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.trailboss-section__content h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  margin: 0;
}

.trailboss-section__content span {
  font-size: clamp(16px, 2vw, 32px);
  opacity: 0.9;
  font-weight: 500;
}

.trailboss-section__content a {
  background-color: #fff;
  color: #262626;
  padding: 12px 78px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.footer-logo {
  padding: 10px 14.375px 28.75px 0;
}

.footer-logo img {
  height: 46px;
}

.trailboss-section__content a:hover {
  background-color: #e6e6e6;
}

/* === Car Configurator === */
.car-configurator {
  margin-top: 30px;
  padding: 80px 0;
  background: #f8f9fa;
}

.configurator__content {
  text-align: center;
}

.configurator__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #262626;
  margin: 0 0 24px;
  padding-bottom: 80px;
  line-height: 1.2;
}

.configurator__subtitle {
  text-align: left;
  margin-bottom: 60px;
}

.model-name {
  font-size: 18px;
  font-weight: 600;
  color: #6b7280;
  display: block;
  margin-bottom: 12px;
}

.model-description {
  font-size: 16px;
  color: #374151;
  margin: 0;
  max-width: 100%;
  font-weight: 600;
  text-align: left;
  padding-bottom: 60px;
}

.configurator__main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.configurator__main.expanded {
  grid-template-columns: 1fr;
}

.configurator__main.expanded .color-selector {
  display: none;
}

.configurator__main.expanded .car-image {
  max-width: 100%;
}

/* Car Viewer */
.car-viewer {
  position: relative;
}

.car-image-container {
  position: relative;
  display: inline-block;
}

.car-image {
  width: 100%;
  max-width: 740px;
  height: auto;
  max-height: 630px;
  display: block;
  transition: all 0.3s ease;
}

.expand-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  padding: 8px;
  color: #374151;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 10;
}

.expand-btn:hover {
  background: rgb(255, 255, 255);
}

.disclaimer {
  font-size: 12px;
  color: #6b7280;
  margin: 16px 0 0;
  text-align: left;
}

/* Color Selector */
.color-selector {
  text-align: left;
}

.color-options {
  margin-bottom: 32px;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  row-gap: 12px;
  max-width: 240px;
}

.color-option {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-option img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.color-option:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.color-option.active {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2563eb;
}

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

.selected-color {
  margin-bottom: 32px;
}

.color-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.color-name {
  font-size: 18px;
  font-weight: 600;
  color: #262626;
}

.build-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
  max-width: 240px;
}

.build-btn:hover {
  background: #1d4ed8;
}

/* Responsive */
@media (max-width: 1024px) {
  .configurator__main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .color-selector {
    text-align: center;
  }
  .color-grid {
    margin: 0 auto;
  }
}
.tables {
  padding: 80px 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-table__title {
  font-size: 40px;
  font-weight: 600;
  color: #262626;
  text-align: center;
  margin: 0 0 16px;
}
.comparison-table__subtitle {
  font-size: 18px;
  color: #6b7280;
  text-align: center;
  margin: 0 0 60px;
}
.comparison-table__wrapper {
  overflow-x: auto;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.comparison-table__grid {
  display: grid;
  grid-template-columns: 280px repeat(5, 1fr);
  grid-auto-rows: 1fr;
  min-width: 100%;
  min-height: calc(100vh - 100px);
  border: 1px solid #e5e7eb;
}
.comparison-table__grid > div:nth-child(-n+6) {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  padding: 24px 16px;
  text-align: center;
  font-weight: 500;
  color: #374151;
}
.comparison-table__grid > div:nth-child(-n+6):first-child {
  background: #f3f4f6;
  text-align: left;
}
.comparison-table__grid > div:nth-child(-n+6):nth-child(2) {
  background: #fff;
  color: #374151;
}
.comparison-table__grid > div:nth-child(-n+6):nth-child(n+3):nth-child(-n+6) {
  background: #fff;
}
.comparison-table__grid > div:nth-child(-n+6):last-child {
  border-right: none;
}
.comparison-table__grid > div:nth-child(n+7) {
  padding: 24px 16px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #262626;
  font-size: 16px;
  background: #fff;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(6n+1) {
  background: #f3f4f6;
  text-align: left;
  font-weight: 500;
  color: #374151;
  justify-content: flex-start;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(8) {
  background: #018afa;
  font-weight: 600;
  color: #fff;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(8) strong {
  color: #fff;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(14) {
  background: #0076ca;
  font-weight: 600;
  color: #fff;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(14) strong {
  color: #fff;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(20) {
  background: #018afa;
  font-weight: 600;
  color: #fff;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(20) strong {
  color: #fff;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(26) {
  background: #0076ca;
  font-weight: 600;
  color: #fff;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(26) strong {
  color: #fff;
}
.comparison-table__grid > div:nth-child(n+7):nth-child(6n) {
  border-right: none;
}
.comparison-table__grid > div:nth-last-child(-n+6) {
  border-bottom: none;
}

.vehicle-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vehicle-header .year {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
  color: #262626;
}
.vehicle-header .model {
  font-size: 16px;
  font-weight: 600;
  color: #262626;
}

.options_cat {
  margin-top: 0px;
}

.compare__slider {
  padding: 0;
}

@media (max-width: 640px) {
  .for_desktop {
    display: none !important;
  }
  .for_mobile {
    display: block !important;
  }
  .footer-logo img {
    height: 32px;
    width: auto;
  }
  .compare__slider {
    padding: 0 12px !important;
  }
  .options_cat {
    margin-top: 55px !important;
  }
  .gb-bullet-list {
    margin-bottom: 24px;
  }
  .link {
    margin-top: 0px !important;
  }
  .link i {
    border: 1px solid currentColor !important;
  }
  .price-box {
    display: flex;
    flex-direction: column !important;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .price-details {
    margin-top: 10px;
    text-align: left;
  }
  .slider-controls .prev {
    margin-top: 0px !important;
  }
  .meta {
    padding-left: 0 !important;
  }
  .cta-link {
    font-size: 16px;
    font-weight: 500;
    gap: 0 !important;
    white-space: nowrap;
  }
  .subprice {
    text-align: left;
  }
  .masthead__btn {
    flex-direction: column;
  }
  .masthead__btn a {
    padding: 14px 50px;
  }
  .price_obj {
    padding: 12px 24px;
  }
  .info-design {
    padding: 40px 12px;
  }
  .info-active {
    padding: 0px 12px;
  }
  .info-rs {
    padding: 0px 12px;
  }
  .tech {
    padding: 0px 12px;
  }
  .info-cargo {
    padding: 0px 12px;
  }
  .info-rs {
    padding: 0px 12px;
  }
  .price_container {
    display: flex;
    flex-direction: column !important;
    align-items: center;
  }
  .button_more {
    width: 100%;
  }
  .car-configurator {
    padding: 40px 0;
  }
  .configurator__main {
    gap: 24px;
  }
  .color-grid {
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    max-width: 180px;
  }
  .configurator__main {
    padding: 0 12px;
  }
  .color-option {
    width: 50px;
    height: 50px;
  }
  .color-option img {
    width: 100%;
    height: 100%;
  }
}
.cards-slider {
  margin-top: 80px;
  padding: 24px 0;
  position: relative;
}

.cards-title {
  text-align: center;
  margin: 0 0 32px;
  color: #222;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
}

.cards-title__show {
  text-align: left;
  margin: 0 0 32px;
  color: #222;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}

.swiper-slide {
  display: block;
  color: inherit;
  text-decoration: none;
}

.swiper-slide figure {
  margin: 0;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.gallery-image img {
  border-radius: 0;
}

.swiper-slide figcaption {
  position: absolute;
  top: 0;
  left: 12px;
  bottom: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: start;
  padding: 10px;
}

.swiper-slide figcaption .disclaimer {
  color: #fff;
  margin: 0;
}
.swiper-slide figcaption .disclaimer h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}
.swiper-slide figcaption .disclaimer p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.meta {
  margin-top: 20px;
}

.eyebrow {
  display: block;
  font-size: 12px;
  color: #6b7280;
}

.title {
  font-size: 20px;
  line-height: 1.35;
  margin: 6px 0 0;
  font-weight: 700;
  color: #262626;
  font-weight: 600;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0077d9;
  margin-top: 4px;
  font-weight: 600;
  margin-left: 5px;
}
.link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1.2px solid currentColor;
  border-radius: 50%;
  font-size: 8px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding-top: 25px;
}

.slider-controls button {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.slider-controls .prev {
  margin-top: 5px;
  transform: rotate(180deg);
}

.slider-controls button img {
  width: 50px;
  height: 50px;
  transition: filter 0.25s ease;
}

.finder__search {
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.finder__search input {
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 0;
  flex: 1;
  font-size: 16px;
}

/* при фокусе или наведении */
.finder__search:focus-within,
.finder__search:hover {
  border-bottom-color: #000; /* цвет линии */
}

.dots {
  --swiper-pagination-bullet-size: 8px;
}

.dots .swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
}

.dots .swiper-pagination-bullet-active {
  background: #262626;
}

.swiper-slide {
  border-radius: 20px;
}

.cards-slider figure {
  margin: 0;
}

.slider-buttons {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.slider-buttons li {
  width: 50%;
}

.cards-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 24px;
}

.gb-bullet-list {
  list-style: inside;
  padding: 0;
  color: #262626;
  font-size: 16px;
  font-weight: 500;
}

.gb-bullet-list li {
  line-height: 1.5;
  color: #fff;
}

.finder {
  padding: 56px 16px;
}

.finder__wrap {
  width: 100%;
  text-align: center;
}

.finder__title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #171717;
  font-weight: 600;
}

.finder__search {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 780px;
  margin: 0 auto 28px;
}

.finder__search input {
  height: 56px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-right: none;
  border-top-left-radius: 8px;
  background: #eee;
  font-size: 18px;
  outline: none;
}

.finder__search button {
  width: 56px;
  height: 56px;
  border: 1px solid #e5e7eb;
  border-left: none;
  border-top-right-radius: 8px;
  background: #eee;
  color: #262626;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.finder__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: center;
  padding: 16px 0;
  margin: 0;
  list-style: none;
}

.finder__pills li {
  flex: 0 0 auto;
}

.finder__pills a {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 9999px;
  background: #e5e5e5;
  color: #0077d9;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.finder__pills a:hover {
  border: none;
  color: #0e4180;
}

.pill-wide a {
  padding-left: 36px;
  padding-right: 36px;
}

.site-footer {
  background: #eee;
}

.wrap {
  padding: 20px 80px;
}

.footer-title {
  font-size: 40px;
  line-height: 1.05;
  color: #262626;
  margin: 28.72px 0;
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
}

.tm {
  font-size: 0.45em;
  color: #6b7280;
}

.footer-section {
  display: flex;
  justify-content: space-between;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 30px;
  align-items: start;
}

.col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.col a {
  color: #262626;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
}

.col a:hover {
  text-decoration: underline;
}

.cta {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.btn-outline {
  display: inline-grid;
  place-items: center;
  height: 48px;
  padding: 0 38px;
  border: 2px solid #1d4ed8;
  border-radius: 10px;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
}

.search-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 16px;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 10px;
  padding: 20px 0;
  border-bottom: 1px solid #d1d5db;
}

.legal a {
  color: #262626;
  text-decoration: underline;
  font-size: 12px;
  font-weight: 700;
}

.choices {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 8px 0 20px;
  width: 100%;
}

.choices a {
  color: #262626;
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.fineprint {
  margin: 12px 0 0;
  color: #8c8c8c;
  font-size: 12px;
  line-height: 1.5;
}

.connection-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.links-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.infotext {
  padding: 60px 0;
}
.infotext__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.infotext__item {
  text-align: left;
  padding: 0 20px 8px 0px;
  border-bottom: 1px solid #262626;
}
.infotext__item:last-child {
  border-right: none;
}
.infotext__title {
  font-size: 24px;
  font-weight: 700;
  color: #262626;
  margin: 0 0 0 0;
  line-height: 1.2;
}
.infotext__title sup {
  font-size: 16px;
  top: -0.8em;
}
.infotext__subtitle {
  font-size: 14px;
  color: #262626;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.infotext__subtitle u {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.info-design {
  padding-top: 40px;
  padding-bottom: 40px;
}
.info-design span {
  font-size: 16px;
  color: #666666;
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 10px;
}
.info-design h2 {
  font-size: 40px;
  color: #262626;
  font-weight: 500;
}
.info-design p {
  margin-top: 5px;
  font-size: 20px;
  color: #262626;
  padding-bottom: 60px;
  line-height: 1.6;
  font-weight: 500;
}

.info-active,
.info-rs,
.tech {
  padding-bottom: 80px;
}
.info-active span,
.info-rs span,
.tech span {
  font-size: 16px;
  color: #666666;
  font-weight: 500;
  line-height: 1.4;
}
.info-active h3,
.info-rs h3,
.tech h3 {
  font-size: 40px;
  color: #262626;
  font-weight: 500;
  padding-top: 10px;
  line-height: 1.2;
}
.info-active P,
.info-rs P,
.tech P {
  font-size: 20px;
  color: #262626;
  line-height: 1.6;
  font-weight: 500;
  padding-bottom: 40px;
}

.gallery-slide {
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;
  cursor: pointer;
}

.gallery-slide .gallery-image {
  display: block;
  width: 100%;
  height: auto;
  transform: translateZ(0);
  transition: transform 0.35s ease, filter 0.35s ease;
  border-radius: 0 !important;
}

.gallery-slide:hover .gallery-image {
  transform: translateZ(0) scale(1.06);
  filter: brightness(0.94);
}

.info-active__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.info-active__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.info-active__column img {
  width: 100%;
  height: auto;
}

.info-active__item {
  padding-bottom: 8px;
}
.info-active__item:not(:last-child) {
  border-bottom: 1px solid #262626;
}

/* Секция и Swiper */
.vehicles-swiper {
  width: 100%;
  overflow: hidden;
}

.vehicles-swiper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

.vehicles-swiper figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.vehicles-swiper figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vehicles-swiper .meta {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.vehicles-swiper .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #262626;
  margin: 0;
}

.price-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 4px;
}

.price-details {
  text-align: right;
}

.price-details span {
  font-size: 0.9rem;
  color: #888;
}

.price-box .price {
  font-size: 16px;
  color: #262626;
  font-weight: 500;
  margin: 0;
}

.price-box .subprice {
  font-size: 12px;
  color: #555;
  margin: 0;
  margin-top: 10px;
}

.icon_uni {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  font-size: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  margin-left: 6px;
}
.icon_uni i {
  font-size: 10px;
}

/* CTA-ссылки */
.cta-row {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.cta-link {
  font-size: 1rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #0e4180;
}
.cta-link:hover img {
  border-color: #2563eb;
  transform: translateX(2px);
}

.vehicle-slider {
  padding: 20px 20px;
  margin: 0 auto;
}

/* Табы сверху */
.vehicle-slider__tabs {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.vehicle-slider__tabs .tab {
  position: relative;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}

.vehicle-slider__tabs .tab:hover {
  color: #000;
}

.vehicle-slider__tabs .tab.is-active {
  color: #2563eb;
  font-weight: 600;
}

.vehicle-slider__tabs .tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .infotext {
    padding: 40px 0;
  }
  .infotext__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .infotext__item {
    padding: 8px 0 8px 0;
    border-right: none;
    border-bottom: 1px solid #d1d5db;
  }
  .infotext__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .infotext__title {
    font-size: 24px;
  }
  .infotext__subtitle {
    font-size: 13px;
  }
  .vehicle-slider__tabs {
    justify-content: center;
    gap: 1.5rem;
  }
  .cta-row {
    flex-direction: row;
    gap: 0.5rem;
  }
}
.info-active__item h4 {
  font-size: 24px;
  font-weight: 600;
  color: #262626;
  line-height: 1.2;
}

.info-active__item p {
  font-size: 16px;
  color: #262626;
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 0;
  margin: 0;
}

.info-design__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.info-design__column {
  border-bottom: 1px solid #262626;
  padding-bottom: 8px;
}

.info-design__column h3 {
  font-size: 24px;
  font-weight: 700;
  color: #262626;
}

.info-design__column p {
  font-size: 14px;
  color: #262626;
  line-height: 1.6;
  padding-bottom: 0;
  font-weight: 500;
  margin: 0;
}

.info-design__columns2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.info-design__column2 h3 {
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  color: #262626;
  font-weight: 700;
}
.info-design__column2 p {
  font-size: 16px;
  color: #262626;
  font-weight: 500;
  line-height: 1.4;
  padding: 0;
  margin: 0;
}

.info-rs p {
  padding-bottom: 0;
}
.info-rs__grids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.info-rs__grids ul {
  list-style-type: disc;
  color: #262626;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 40px;
}
.info-rs__grid_columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.info-rs__grid_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-rs__grid_item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #666666;
  line-height: 1.2;
  padding-bottom: 10px;
}
.info-rs__grid_item span {
  font-size: 32px;
  color: #262626;
  line-height: 1.4;
  font-weight: 600;
  padding-bottom: 10px;
}
.info-rs__grid_item p {
  font-size: 20px;
  color: #262626;
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 0;
  margin: 0 !important;
  padding: 0;
}
.info-rs__grid_item ul {
  list-style-type: disc;
  color: #262626;
  font-size: 14px;
  font-weight: 500;
  padding-left: 15px;
}

.info-tech__grids ul {
  list-style-type: none;
  color: #262626;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
}
.info-tech__grids img {
  margin-bottom: 20px;
  width: 100%;
}
.info-tech__grids p {
  padding: 0;
  margin: 0;
  font-size: 20px;
  color: #262626;
  font-weight: 700;
}
.info-tech__grids span {
  font-size: 14px;
  color: #262626;
  font-weight: 500;
  line-height: 1.4;
}

.performance-grids p {
  font-size: 20px;
  color: #262626;
  font-weight: 500;
  line-height: 1.4;
}

.tech p {
  padding-bottom: 0;
}

.for-btn .container {
  display: flex;
  justify-content: flex-end;
}

.button_more {
  display: block;
  max-width: 356px;
  width: 100%;
  background-color: transparent;
  border: 2px solid #0077d9;
  color: #0077d9;
  font-family: ChevySans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 125%;
  padding: 12px 32px;
  transition: background 0.25s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 8px;
  -o-object-fit: contain;
  object-fit: contain;
  text-align: center;
  text-decoration: none;
}

.explore {
  padding-top: 120px;
}
.explore h2 {
  color: #262626;
  font-family: ChevySans, Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.2;
  text-align: center;
}
.explore img {
  padding-top: 32px;
}
.explore__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.explore__buttons a {
  display: inline-block;
  max-width: 200px;
  width: 100%;
  border: none;
  color: #0077d9;
  border: 2px solid #0077d9;
  font-family: ChevySans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 125%;
  padding: 12px 32px;
  transition: background 0.25s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 8px;
  -o-object-fit: contain;
  object-fit: contain;
  text-align: center;
  text-decoration: none;
}
.explore__buttons a:last-child {
  background-color: transparent;
  border: 0;
  color: #0077d9;
}

.only-mobile__content {
  display: none;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta {
    justify-items: stretch;
  }
}
.section_desktop {
  display: block;
}

.section_mobile {
  display: none;
}

@media (max-width: 640px) {
  .only-mobile__content {
    display: block;
    padding: 40px 22px;
  }
  .sidebar-modal__nav {
    padding: 0;
  }
  .model-sticky {
    display: block !important;
  }
  .infotext {
    padding: 40px 12px;
  }
  .car-configurator {
    padding: 40px 12px;
  }
  .section_mobile {
    display: block;
  }
  .section_desktop {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid .col:nth-child(2) {
    display: none;
  }
  .btn-outline {
    width: 100%;
  }
  .legal {
    gap: 10px 16px;
  }
}
/* Телефоны (мобильные) */
@media (max-width: 640px) {
  .gallery-modal__thumbnails .gallery-modal__thumbnail {
    min-height: auto !important;
    width: 35% !important;
  }
  .options_cat .title {
    padding: 0 8px;
  }
  .slider-buttons {
    display: flex;
    flex-direction: column;
  }
  .slider-buttons li {
    gap: 20px;
    padding-bottom: 20px;
  }
  .gb-bullet-list {
    padding: 0 8px;
  }
  .link {
    white-space: nowrap !important;
  }
  .info-rs {
    margin-top: 100px;
    padding: 0 12px !important;
  }
  .tables {
    padding: 0 12px !important;
  }
  .offers-accordion {
    display: block !important;
  }
  .main_photo {
    height: 430px;
  }
  .btn {
    padding: 12px 32px;
  }
  .site-header {
    position: relative;
  }
  .header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0px;
    height: 60px;
  }
  .header__row nav {
    display: none;
  }
  .hamburger_item {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    display: block;
    order: 1;
  }
  .hamburger_btn {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 4px;
  }
  .hamburger_btn img {
    width: 24px;
    height: 24px;
  }
  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    order: 2;
  }
  .brand img {
    height: 24px;
  }
  .header__actions {
    order: 3;
  }
  .header__actions .hdr-btn {
    padding: 4px;
  }
  .header__actions .hdr-btn img {
    width: 34px;
    height: 34px;
  }
  .mobile_tabs {
    display: none;
    justify-content: center;
  }
  .sticky-nav {
    top: 0; /* При скролле поднимается наверх */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* Больше заметная тень на мобильных */
  }
  .sticky-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .sticky-nav__list {
    justify-content: flex-start;
    padding: 0 8px; /* Уменьшили отступ для большего пространства */
    height: 48px;
    gap: 0;
  }
  .sticky-nav__link {
    height: 48px;
    padding: 0 20px; /* Увеличили padding для лучшей кликабельности */
    font-size: 14px;
    min-width: -moz-max-content;
    min-width: max-content; /* Предотвращаем сжатие текста */
  }
  .sticky-nav__item--hide-mobile {
    display: none;
  }
  .sidebar-modal {
    max-width: 100%;
  }
  .sidebar-modal__header {
    padding: 16px 20px;
  }
  .sidebar-menu__link {
    padding: 18px 20px;
    font-size: 17px;
  }
  .sidebar-submenu__back {
    padding: 16px 20px;
    font-size: 15px;
  }
  .sidebar-submenu__content {
    padding: 24px 20px;
  }
  .sidebar-submenu__content h3 {
    font-size: 13px;
    margin: 24px 0 12px;
  }
  .sidebar-submenu__content a {
    padding: 12px 10px;
    font-size: 15px;
  }
  .masthead__cta {
    width: 100%;
    margin-top: 40px;
    align-items: center;
    text-align: center;
  }
  .masthead__title {
    font-size: 24px;
  }
  .categories-section {
    padding: 20px 16px;
  }
  .category_item h5 {
    font-size: 24px;
    font-weight: 600;
  }
  .offer-section__content {
    display: none;
  }
  .trailboss-section__image {
    height: 550px;
  }
  .social {
    display: inline-flex;
  }
  .brand img {
    height: 30px;
  }
  .site-header {
    position: relative;
    padding-top: 10px;
  }
  .segments {
    gap: 8px;
  }
  .seg {
    height: 5px;
  }
  .seg__fill {
    height: 5px;
  }
  .controlbar {
    padding: 0 24px 30px 24px;
  }
  .wrap {
    padding: 20px 30px;
  }
  .footer-title {
    font-size: 40px;
  }
  .footer-section {
    flex-direction: column;
    gap: 5px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid .col {
    list-style: none;
    padding: 0;
    gap: 5px;
  }
  .footer-grid a {
    text-decoration: none;
    font-size: 12px;
  }
  .footer-grid a:hover {
    text-decoration: underline;
  }
  .cta {
    margin-top: 20px;
  }
  .finder {
    display: block;
  }
  .comparison-table__title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .comparison-table__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .comparison-table__wrapper {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table__grid {
    grid-template-columns: 200px repeat(5, 150px);
    min-width: 950px;
    font-size: 14px;
  }
  .comparison-table__grid > div:nth-child(-n+6) {
    padding: 16px 12px;
  }
  .comparison-table__grid > div:nth-child(n+7) {
    padding: 16px 12px;
    font-size: 14px;
  }
  .vehicle-header .year {
    font-size: 12px;
  }
  .vehicle-header .model {
    font-size: 14px;
  }
  .info-design,
  .info-active,
  .info-rs,
  .tech {
    padding-bottom: 40px;
  }
  .info-design span,
  .info-active span,
  .info-rs span,
  .tech span {
    font-size: 14px;
  }
  .info-design h2,
  .info-design h3,
  .info-active h2,
  .info-active h3,
  .info-rs h2,
  .info-rs h3,
  .tech h2,
  .tech h3 {
    font-size: 28px;
    padding-top: 5px;
  }
  .info-design p,
  .info-active p,
  .info-rs p,
  .tech p {
    font-size: 16px;
    padding-bottom: 20px;
  }
  .info-design__columns {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }
  .info-design__columns2 {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }
  .info-active__columns {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }
  .info-active__item h4 {
    font-size: 20px;
  }
  .info-active__item p {
    font-size: 14px;
  }
  .info-rs__grids {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-rs__grids ul {
    font-size: 14px;
    padding-bottom: 20px;
  }
  .info-rs__grid_columns {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }
  .info-rs__grid_item h3 {
    font-size: 14px;
  }
  .info-rs__grid_item span {
    font-size: 24px;
  }
  .info-rs__grid_item p {
    font-size: 16px;
  }
  .hdr-btn {
    margin: 0;
  }
  .site-header .container {
    padding: 0 22px;
  }
  .info-tech__grids {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-tech__grids img {
    max-width: 100%;
    margin: 0 auto 10px;
  }
  .info-tech__grids p {
    font-size: 16px;
  }
  .info-tech__grids span {
    font-size: 12px;
  }
  .performance-grids {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .performance-grids ul {
    width: 100%;
  }
  .performance-grids ul img {
    width: 100%;
    height: auto;
  }
  .explore {
    padding-top: 60px;
  }
  .explore h2 {
    font-size: 24px;
  }
  .explore img {
    padding-top: 20px;
  }
  .explore__buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  .explore__buttons a {
    max-width: 100%;
    width: 100%;
  }
  .for-btn .container {
    justify-content: center;
  }
  .button_more {
    max-width: 100%;
    width: 100%;
  }
  .tables {
    padding: 40px 0;
  }
  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .category_item {
    padding: 20px;
    gap: 8px;
  }
  .category_item h5 {
    font-size: 20px;
  }
  .category_item a {
    font-size: 12px;
  }
  .red_img img,
  .info-cargo img {
    width: 100%;
    height: auto;
  }
  .trailboss-section__content {
    padding-top: 40px;
    max-width: 90%;
  }
  .trailboss-section__content h2 {
    font-size: 40px;
    font-weight: 500;
    color: #262626;
  }
  .trailboss-section__content span {
    font-size: 24px;
    color: #262626;
  }
  .trailboss-section__content a {
    padding: 15px 40px;
    font-size: 16px;
  }
  .offer-banner__section {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .offer-section__fullwidth {
    width: 100%;
    margin-bottom: 40px;
  }
  .offer-banner__details {
    padding: 20px;
    order: 2;
  }
  .offer-banner__image {
    order: 1;
  }
  .offer-banner__image img {
    min-height: 280px;
    max-height: 420px;
  }
  .call-back {
    padding: 40px 12px !important;
  }
  .call-back__title {
    font-size: 20px !important;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .call-back__form-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-bottom: 16px;
  }
  .call-back__form-group label {
    font-size: 13px;
  }
  .call-back__form-group input,
  .call-back__form-group select {
    padding: 12px 14px;
    font-size: 15px;
  }
  .call-back__form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 20px;
    margin-bottom: 24px;
  }
  .call-back__form-checkbox input[type=checkbox] {
    flex-shrink: 0;
    margin-top: 2px;
  }
  .call-back__form-checkbox label {
    font-size: 13px;
    text-align: left;
  }
  .call-back__submit {
    max-width: 100% !important;
    padding: 14px 24px;
    font-size: 14px;
  }
}
.price_obj {
  margin-top: 50px;
}

.price_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.vehicle-slider__tabs {
  display: flex;
  justify-content: center;
  gap: 5.5rem;
  border-bottom: 1px solid transparent;
  margin-bottom: 2rem;
}

.vehicle-slider__tabs .tab {
  position: relative;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: #666;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}

.vehicle-slider__tabs .tab:hover {
  color: #000;
}

.vehicle-slider__tabs .tab.is-active {
  color: #2563eb; /* синий как на скрине */
  font-weight: 600;
}

/* underline */
.vehicle-slider__tabs .tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background-color: #2563eb; /* синий underline */
  border-radius: 2px;
  transition: all 0.3s ease;
}

.call-back {
  margin-top: 50px;
  padding: 80px 0;
  background-color: #f5f5f5;
}
.call-back__title {
  font-size: 32px;
  font-weight: 700;
  color: #262626;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.call-back__form {
  max-width: 1200px;
  margin: 0 auto;
}
.call-back__form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.call-back__form-group {
  display: flex;
  flex-direction: column;
}
.call-back__form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.call-back__form-group label .required {
  color: #d32f2f;
}
.call-back__form-group input,
.call-back__form-group select {
  padding: 12px 16px;
  border: 1px solid #cccccc;
  border-radius: 0;
  font-size: 16px;
  font-family: ChevySans, Arial, sans-serif;
  background-color: #ffffff;
  color: #262626;
  transition: border-color 0.3s;
}
.call-back__form-group input:focus,
.call-back__form-group select:focus {
  outline: none;
  border-color: #0077d9;
}
.call-back__form-group input::-moz-placeholder, .call-back__form-group select::-moz-placeholder {
  color: #999999;
}
.call-back__form-group input::placeholder,
.call-back__form-group select::placeholder {
  color: #999999;
}
.call-back__form-group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.call-back__form-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.call-back__form-checkbox input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #0077d9;
  border-radius: 3px;
  background-color: #ffffff;
  transition: all 0.3s;
}
.call-back__form-checkbox input[type=checkbox]:checked {
  background-color: #0077d9;
  border-color: #0077d9;
}
.call-back__form-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.call-back__form-checkbox input[type=checkbox]:hover {
  border-color: #036bc0;
}
.call-back__form-checkbox label {
  font-size: 14px;
  color: #666666;
  cursor: pointer;
  text-decoration: underline;
}
.call-back__submit {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid #0077d9;
  color: #0077d9;
  font-size: 16px;
  font-weight: 600;
  font-family: ChevySans, Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}
.call-back__submit:hover {
  background-color: #0077d9;
  color: #ffffff;
}

@media (max-width: 768px) {
  .vehicle-slider__tabs {
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .vehicle-slider__tabs .tab {
    font-size: 0.9rem;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .sidebar-modal {
    max-width: 380px;
  }
  .hamburger_item {
    left: -50px;
  }
  .info-design__columns,
  .info-design__columns2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .info-active__columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .info-rs__grids {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .info-rs__grid_columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .info-tech__grids {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .performance-grids {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .explore h2 {
    font-size: 28px;
  }
  .explore__buttons {
    gap: 16px;
  }
  .explore__buttons a {
    max-width: 250px;
  }
  .comparison-table__grid {
    grid-template-columns: 220px repeat(5, 1fr);
    font-size: 15px;
  }
  .call-back {
    padding: 60px 0;
  }
  .call-back__title {
    font-size: 28px;
    margin-bottom: 35px;
  }
  .call-back__form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .call-back__form-group label {
    font-size: 13px;
  }
  .call-back__form-group input,
  .call-back__form-group select {
    padding: 12px 15px;
    font-size: 15px;
  }
  .call-back__submit {
    max-width: 350px;
    font-size: 15px;
  }
}
/* Ноутбуки и маленькие десктопы */
@media (min-width: 1025px) and (max-width: 1440px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
  .info-design__columns,
  .info-design__columns2,
  .info-rs__grids {
    gap: 30px;
  }
  .info-tech__grids {
    gap: 30px;
  }
}
/* Большие экраны (широкие мониторы) */
@media (min-width: 1441px) {
  .container {
    max-width: 100%;
  }
}
/* Экстра маленькие экраны */
@media (max-width: 400px) {
  .masthead__title {
    font-size: 20px;
  }
  .info-design h2,
  .info-design h3,
  .info-active h2,
  .info-active h3,
  .info-rs h2,
  .info-rs h3,
  .tech h2,
  .tech h3 {
    font-size: 24px;
  }
  .info-design p,
  .info-active p,
  .info-rs p,
  .tech p {
    font-size: 14px;
  }
  .category_item h5 {
    font-size: 18px;
  }
  .explore h2 {
    font-size: 20px;
  }
  .comparison-table__title {
    font-size: 32px;
  }
  .comparison-table__subtitle {
    font-size: 18px;
  }
  .comparison-table__grid {
    grid-template-columns: 160px repeat(5, 130px);
    min-width: 810px;
    font-size: 12px;
  }
  .comparison-table__grid > div {
    padding: 12px 8px;
  }
  .vehicle-header .year {
    font-size: 10px;
  }
  .vehicle-header .model {
    font-size: 12px;
  }
  .slider-controls button img {
    width: 45px;
    height: 45px;
  }
}
/* Телефоны в горизонтальной ориентации */
@media (max-width: 896px) and (orientation: landscape) {
  .masthead {
    min-height: 400px;
    max-height: 600px;
  }
  .masthead__cta {
    margin-top: 60px;
  }
  .info-design__columns,
  .info-design__columns2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-rs__grids {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.gallery-modal__border {
  border: 1px solid #e5e7eb;
}
.gallery-modal[hidden] {
  display: none;
}
.gallery-modal.active {
  transform: translateX(0);
}
.gallery-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-modal__overlay.active {
  opacity: 1;
  visibility: visible;
}
.gallery-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}
.gallery-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: #262626;
  color: #fff;
  overflow: visible;
}
.gallery-modal__header .gallery-modal__category {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
.gallery-modal__header .gallery-modal__category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.gallery-modal__header .gallery-modal__category-btn.active .gallery-modal__arrow {
  transform: rotate(180deg);
}
.gallery-modal__header .gallery-modal__category-btn .gallery-modal__arrow {
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 16px;
  margin-top: 5px;
  margin-left: 10px;
  transition: transform 0.2s;
  color: #ffffff;
}
.gallery-modal__header .gallery-modal__count {
  opacity: 0.8;
}
.gallery-modal__header .gallery-modal__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 180px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 1000;
  margin-top: 0;
  margin-left: 0;
}
.gallery-modal__header .gallery-modal__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gallery-modal__header .gallery-modal__dropdown-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  color: #262626;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}
.gallery-modal__header .gallery-modal__dropdown-item:hover {
  background: #f5f7fa;
}
.gallery-modal__header .gallery-modal__dropdown-item:last-child .gallery-modal__dropdown-text {
  border-bottom: none;
}
.gallery-modal__header .gallery-modal__dropdown-item.active {
  background: #eef3fc;
}
.gallery-modal__header .gallery-modal__dropdown-item.active .gallery-modal__dropdown-text span:first-child {
  color: #0077d9;
}
.gallery-modal__header .gallery-modal__dropdown-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  width: 100%;
  padding: 12px 12px 8px 12px;
}
.gallery-modal__header .gallery-modal__dropdown-preview img {
  width: 100%;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.gallery-modal__header .gallery-modal__dropdown-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  gap: 24px;
}
.gallery-modal__header .gallery-modal__dropdown-text span {
  padding-left: 0;
  border-left: none;
}
.gallery-modal__header .gallery-modal__dropdown-text span:first-child {
  font-weight: 500;
}
.gallery-modal__header .gallery-modal__dropdown-text span:last-child {
  opacity: 0.5;
  font-size: 13px;
}
.gallery-modal__close {
  border: none;
  padding: 10px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.gallery-modal__close svg {
  width: 25px;
  height: 25px;
}
.gallery-modal__close:active {
  transform: scale(0.95);
}
.gallery-modal__close svg {
  display: block;
  color: #262626;
}
.gallery-modal__main {
  flex: 1;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}
.gallery-modal__main .gallery-modal__main-slider {
  width: 100%;
  height: 100%;
}
.gallery-modal__main .gallery-modal__main-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.gallery-modal__main .gallery-modal__main-slider .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
.gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}
.gallery-modal__nav:hover {
  background: #f3f4f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.gallery-modal__nav--prev {
  left: 24px;
}
.gallery-modal__nav--next {
  right: 24px;
}
.gallery-modal__nav svg {
  width: 24px;
  height: 24px;
  color: #262626;
}
.gallery-modal__caption {
  padding: 16px 24px;
  background: #fff;
  text-align: center;
  font-size: 14px;
  color: #374151;
  border-top: 1px solid #e5e7eb;
}
.gallery-modal__thumbnails {
  position: relative;
  padding: 16px 48px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-radius: 0;
}
.gallery-modal__thumbnails .gallery-modal__thumbnails-slider {
  overflow: hidden;
}
.gallery-modal__thumbnails .swiper-slide {
  width: auto;
  border-radius: 0;
}
.gallery-modal__thumbnails .gallery-modal__thumbnail {
  width: 16%;
  min-height: 115px;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.gallery-modal__thumbnails .gallery-modal__thumbnail.active {
  border-color: #0077d9;
}
.gallery-modal__thumbnails .gallery-modal__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.gallery-modal__thumbnails .gallery-modal__thumbnail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #0077d9;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-modal__thumbnails .gallery-modal__thumbnail.active::after {
  opacity: 1;
}
.gallery-modal__thumb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.gallery-modal__thumb-nav:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.gallery-modal__thumb-nav--prev {
  left: 8px;
}
.gallery-modal__thumb-nav--next {
  right: 8px;
}
.gallery-modal__thumb-nav svg {
  width: 16px;
  height: 16px;
  color: #374151;
}

:root {
  --chevy-blue: #1976d2;
  --chevy-black: #262626;
  --chevy-gray: #f4f4f4;
  --chevy-border: #e5e7eb;
  --transition-fast: 0.25s ease;
  --font-main: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* ===== BASE ===== */
body.menu-open {
  overflow: hidden;
}

.chevy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f8f8;
  z-index: 50;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chevy-logo img {
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===== BURGER ===== */
.chevy-burger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.chevy-burger span {
  width: 28px;
  height: 2px;
  background: var(--chevy-black);
  transition: all var(--transition-fast);
}

/* ===== ACCOUNT ICON ===== */
.chevy-user {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid var(--chevy-black);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ===== MEGA MENU OVERLAY ===== */
.chevy-mega-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.88);
  opacity: 0;
  pointer-events: none;
  z-index: 49;
  transition: opacity var(--transition-fast);
}

.chevy-mega-menu.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===== TABS (Vehicles / Shop) ===== */
.chevy-tabs {
  display: flex;
  background: #f3f4f6;
  padding: 0 16px;
  font-family: var(--font-main);
}

.chevy-tab {
  width: auto;
  padding: 14px 0;
  font-size: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--chevy-black);
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
}

.chevy-tab.active {
  color: var(--chevy-blue);
  border-bottom-color: var(--chevy-blue);
  font-weight: 600;
}

/* ===== PANELS ===== */
.chevy-panel {
  position: absolute;
  top: 56px; /* ниже табов */
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: all var(--transition-fast);
}

.chevy-panel.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

/* ===== VEHICLES ROOT ===== */
.chevy-list {
  list-style: none;
  margin: 0;
  padding: 0 20px;
}

.chevy-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
  cursor: pointer;
  color: var(--chevy-black);
  font-weight: 500;
}

.chevy-list-item:hover {
  color: var(--chevy-blue);
}

.chevy-arrow {
  font-size: 16px;
  line-height: 1;
  color: #666;
}

.chevy-find-dealer {
  margin: 48px 20px 20px;
  padding: 0;
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--chevy-black);
  cursor: pointer;
}

/* ===== TRUCKS PAGE ===== */
.chevy-trucks-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  background: var(--chevy-black);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.chevy-trucks-back:hover {
  opacity: 0.9;
}

.chevy-back-arrow {
  font-size: 26px;
  line-height: 1;
}

.chevy-trucks-title {
  font-size: 28px;
  text-align: center;
  margin: 16px 0 8px;
  font-weight: 700;
  color: var(--chevy-black);
}

.chevy-trucks-view-all {
  display: block;
  text-align: center;
  font-size: 16px;
  text-decoration: underline;
  color: var(--chevy-black);
  margin-bottom: 24px;
}

/* ===== TRUCKS LIST ===== */
.chevy-trucks-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding-bottom: 48px;
}

.chevy-truck-card {
  text-align: center;
}

.chevy-truck-img {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.chevy-truck-img img {
  width: 70%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.chevy-truck-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--chevy-black);
  margin-bottom: 4px;
}

.chevy-truck-price {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.chevy-truck-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--chevy-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.chevy-truck-link:hover {
  color: #0b5eb7;
}

/* ===== SHOP TAB (заглушка) ===== */
.chevy-shop-placeholder {
  margin: 32px 20px;
  font-size: 18px;
  color: #555;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .chevy-header {
    height: 80px;
    padding: 0 32px;
  }
  .chevy-tab {
    font-size: 16px;
  }
  .chevy-list-item {
    font-size: 22px;
  }
}
/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 768px) {
  .connection-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .links-section {
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 100%;
  }
  .legal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
    width: 100%;
  }
  .legal a {
    font-size: 11px;
  }
  .choices {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .choices a {
    font-size: 11px;
    text-align: center;
  }
  .social {
    gap: 12px;
    justify-content: center;
  }
  .social a svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 480px) {
  .legal {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .social {
    gap: 8px;
  }
  .social a svg {
    width: 24px;
    height: 24px;
  }
}
:root {
  --chevy-blue: #1976d2;
  /* --chevy-black: #262626; */
  --chevy-border: #e5e7eb;
  --transition-fast: 0.25s ease;
  --header-height: 72px;
  --tabs-height: 48px;
}

/* ===== HEADER ===== */
.chevy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f8f8;
  z-index: 50;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.chevy-burger {
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.chevy-burger span {
  width: 28px;
  height: 2px;
  background: #000;
}

.chevy-logo img {
  height: 32px;
}

.chevy-user {
  border: none;
  background: none;
  cursor: pointer;
}

/* ===== TABS (mobile only) ===== */
.chevy-tabs {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  height: var(--tabs-height);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  padding: 0 16px;
  background: #f3f4f6;
  z-index: 49;
}

.chevy-tab {
  border: none;
  background: transparent;
  font-size: 16px;
  padding: 0 0 8px;
  cursor: pointer;
  color: #262626;
  position: relative;
  font-weight: 500;
}

.chevy-tab.active {
  color: var(--chevy-blue);
  font-weight: 500;
}

.chevy-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--chevy-blue);
}

/* Desktop: скрываем мобильные табы и меню */
@media (min-width: 640px) {
  .chevy-tabs {
    display: none;
  }
  .chevy-menu-overlay {
    display: none !important;
  }
}
/* ===== OVERLAY ===== */
/* По умолчанию overlay совсем не участвует (display:none) */
.chevy-menu-overlay {
  position: fixed;
  top: calc(var(--header-height) + var(--tabs-height));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none; /* 🔴 не видно, не кликается */
  background: transparent;
}

/* Когда меню открыто — показываем overlay */
.chevy-menu-overlay.open {
  display: block; /* ✅ появляется */
}

/* ===== MAIN PANEL ===== */
/* Root состояние: 70% высоты, скрытое, не кликается пока нет .open */
.chevy-menu {
  position: relative;
  height: 70vh;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none; /* 🔴 не ловит клики, пока закрыто */
  transition: opacity var(--transition-fast), transform var(--transition-fast), height var(--transition-fast), border-radius var(--transition-fast);
}

/* При открытой сабпанели (Trucks/Electric): растягиваем до низа */
.chevy-menu.sub-open {
  height: calc(100vh - (var(--header-height) + var(--tabs-height)));
  border-radius: 0;
}

/* Активное меню: видно и кликабельно */
.chevy-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* ✅ кликается */
}

/* ===== ROOT PANELS (Vehicles / Shop список) ===== */
.chevy-panel {
  position: absolute;
  inset: 0;
  padding: 35.5px 24px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  z-index: 10;
}

.chevy-panel.active {
  opacity: 1;
  pointer-events: auto;
}

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

.chevy-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
  cursor: pointer;
  color: #222;
  font-weight: 500;
}

.chevy-list-item:last-child {
  border-bottom: none;
}

.chevy-arrow {
  font-size: 24px;
  color: #666;
}

/* ===== SUBPANELS (Trucks / Electric) ===== */
.chevy-subpanel {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  z-index: 41;
}

.chevy-subpanel.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* ===== SUBPANEL HEADER ===== */
.chevy-subheader {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  background: #262626;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  margin-top: 15px;
}

.chevy-back-arrow {
  font-size: 24px;
}

/* ===== SUBPANEL CONTENT ===== */
.chevy-subcontent {
  width: 100%;
  padding: 20px 20px 44px 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.chevy-view-all-link {
  display: block;
  text-align: center;
  font-size: 12px;
  text-decoration: underline;
  color: var(--chevy-black);
  margin-bottom: 0;
}

.chevy-subcontent:first-child {
  margin-top: 0;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

html.no-scroll .page-wrapper {
  overflow: hidden;
}

.chevy-panel-shop {
  width: 100%;
  padding: 35px 30px 30px;
}

.shop-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.shop-list__item a {
  display: block;
  padding: 6px 0;
  font-size: 18px;
  color: #111;
  text-decoration: none;
}

.shop-list__item a:hover {
  text-decoration: underline;
}

.shop-list__title {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 8px;
}

.chevy-subcontent h3 {
  margin: 0 0 16px;
  font-size: 24px;
  text-align: center;
  color: #262626;
}

/* ===== CARDS IN SUBPANEL ===== */
.chevy-truck-card {
  margin-bottom: 14px;
  width: 100%;
}

.chevy-truck-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}

.chevy-truck-name {
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  color: #262626;
}

.chevy-truck-price {
  font-size: 12px;
  color: #262626;
}

.chevy-truck-link {
  font-size: 16px;
  color: var(--chevy-blue);
  text-decoration: none;
  font-weight: 600;
}

.offers-accordion {
  display: none;
  background: #fff;
  padding: 24px 24px 32px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.offers-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #262626;
}

/* Строки списка */
.offer-item {
  border-bottom: 1px solid #8c8c8c;
}

/* Заголовок строки (текст + кружок с +) */
.offer-header {
  width: 100%;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
}

.offer-name {
  font-size: 14px;
  color: #4b5563;
}

.offer-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #666666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #666666;
  position: relative;
}

.offer-icon::before,
.offer-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 999px;
}

.offer-icon::before {
  width: 14px;
  height: 2px;
}

.offer-icon::after {
  width: 2px;
  height: 14px;
}

/* когда открыт — минус (убираем вертикальную палку) */
.offer-item.is-open .offer-icon::after {
  opacity: 0;
}

/* Тело аккордеона */
.offer-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

/* Карточка внутри */
.offer-card {
  margin-bottom: 20px;
  background: #f9fafb;
}

.offer-card-media img {
  width: 100%;
  display: block;
}

.offer-card-content {
  padding: 24px;
  background: #262626;
  color: #f9fafb;
}

.offer-card-content h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.offer-price {
  margin: 8px 0 12px;
}

.offer-price-main {
  font-size: 2rem;
  font-weight: 700;
}

.offer-price-sub {
  margin-left: 4px;
  font-size: 0.9rem;
}

.offer-list {
  margin: 0 0 16px;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.offer-p {
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 16px;
}

.offer-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 40px;
}

.btn-primary,
.btn-outline {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid #0077d9;
  cursor: pointer;
}

.btn-primary {
  background: #0077d9;
  color: #262626;
}

.btn-outline {
  background: transparent;
  color: #0077d9;
}

.btn-primary1,
.btn-outline1 {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid #fff;
  cursor: pointer;
}

.btn-primary1 {
  background: #fff;
  color: #262626;
}

.btn-outline1 {
  background: transparent;
  color: #fff;
}

.model-sticky {
  display: none;
  position: sticky;
  top: 0;
  z-index: 30;
}

.model-sticky.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.model-sticky__toggle {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
}

.model-sticky__title {
  font-size: 16px;
  font-weight: 600;
  font-family: "ChevySans", sans-serif;
  color: #262626;
}

.model-sticky__icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1.5px solid #262626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.model-sticky__icon::before {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 1.7px solid #262626;
  border-right: 1.7px solid #262626;
  transform: rotate(42deg);
  transition: transform 0.2s ease;
}

.model-sticky.is-open .model-sticky__icon::before {
  transform: rotate(-135deg);
}

.model-sticky__dropdown {
  max-height: 0;
  overflow: hidden;
  background: #f5f5f5;
  transition: max-height 0.25s ease;
  border-bottom: 1.4px solid #e5e7eb;
}

.model-sticky__menu {
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.model-sticky__menu-item {
  padding: 4px 0;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
}

.model-sticky__menu-item.is-active {
  color: #2563eb;
  border-left: 3px solid #2563eb;
  padding-left: 8px;
}

/* оверлей для клика по пустому месту */
.model-sticky-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.model-sticky-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

[data-header] {
  position: relative;
  z-index: 30;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
}

.scrim {
  position: fixed;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 20;
}

.mega--simple {
  display: flex;
  gap: 0px;
  padding: 40px 60px;
}

.mega-simple__col {
  flex: 1;
  min-width: 260px;
}

.mega-simple__col:first-child {
  padding-left: 50px;
}

.mega-simple__col h3 {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin: 0 0 20px 0;
  margin-left: 10px;
}

.mega-simple__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-simple__col li {
  margin-bottom: 14px;
}

.mega-simple__col a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 400;
}

.mega-simple__left li {
  font-size: 20px;
  border-left: 3px solid transparent;
  padding-left: 8px;
}

.mega-simple__left li:hover {
  border-left: 3px solid #0e4180;
}

.mega-simple__right li {
  font-size: 16px;
  border-left: 3px solid transparent;
  padding-left: 8px;
}

.mega-simple__right li:hover {
  border-left: 3px solid #0e4180;
}

.red_img {
  margin-top: 50px;
}

/* общий контейнер сайдбара */
.sidebar-modal__nav--simple {
  height: 100vh;
  padding: 0px 25.5px 32px;
  background: #ffffff;
  overflow-y: auto;
}

/* только на мобиле показываем */
@media (min-width: 768px) {
  .sidebar-section__list {
    padding-left: 12px;
  }
}
/* верхняя строка */
.sidebar-modal__top {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  gap: 12px;
  margin-bottom: 40px;
  margin-left: 15px;
}

.sidebar-lang {
  padding: 0;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 600;
  color: #0077d9;
  cursor: pointer;
}

.sidebar-lang:hover {
  text-decoration: none;
  color: #0e4180;
}

/* кнопка-крестик */
.sidebar-close {
  border: none;
  background: none;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sidebar-close__icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.sidebar-close__icon::before,
.sidebar-close__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #111827;
  transform-origin: center;
}

.sidebar-close__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar-close__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar-section + .sidebar-section {
  margin-top: 20px;
}

.sidebar-section__title {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 16px;
  margin-left: 15px;
}

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

.sidebar-section__link {
  display: block;
  font-size: 12px;
  color: #111827;
  text-decoration: none;
  padding: 3px 0;
  font-weight: 600;
}

.sidebar-section__link:hover {
  text-decoration: underline;
}

.sidebar-section__list li {
  border-left: 3px solid transparent;
  padding: 0px 15px;
}

.sidebar-section__list li:hover {
  border-left: 3px solid #0e4180;
}

.sidebar-section__list li a:hover {
  text-decoration: none;
}

.play_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 1;
  z-index: 5;
  border-radius: 18px;
}

/* icon */
.play_image::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  z-index: 6;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'><g id='icon-play'><g id='play-lrg'><path fill-rule='evenodd' clip-rule='evenodd' d='M20.9657 16.9396C21.5769 16.5729 22.3358 16.5537 22.9647 16.8891L47.9403 30.2095C48.6016 30.5621 49.0146 31.2506 49.0146 32C49.0146 32.7494 48.6016 33.4379 47.9403 33.7905L22.9647 47.1109C22.3358 47.4463 21.5769 47.4271 20.9657 47.0604C20.3545 46.6937 19.9805 46.0331 19.9805 45.3203V18.6797C19.9805 17.9669 20.3545 17.3063 20.9657 16.9396ZM24.039 22.0618V41.9382L42.6732 32L24.039 22.0618Z' fill='white'/><path fill-rule='evenodd' clip-rule='evenodd' d='M32 4.05854C16.5684 4.05854 4.05854 16.5684 4.05854 32C4.05854 47.4316 16.5684 59.9415 32 59.9415C47.4316 59.9415 59.9415 47.4316 59.9415 32C59.9415 16.5684 47.4316 4.05854 32 4.05854ZM0 32C0 14.3269 14.3269 0 32 0C49.6731 0 64 14.3269 64 32C64 49.6731 49.6731 64 32 64C14.3269 64 0 49.6731 0 32Z' fill='white'/></g></g></svg>");
}

@supports (padding: max(0px)) {
  .page-wrapper {
    padding-bottom: max(126px, env(safe-area-inset-bottom));
  }
}
/*# sourceMappingURL=main.css.map */
