.t-checkbox__indicator {
    zoom: 1.5;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
  margin-top: 156px;
  background: #0b1a30;
}

.choose-color { color: white; }

/* ========== HEADER ========== */
#rec2317462441 {
  position: fixed;
  height: 100px;
  background: #000;
  width: 100%;
  color: #fff;
  top: 0;
  transition: top 0.55s ease-in-out;
  z-index: 999;
}
#rec2317462441._header-scroll { top: -103px; }

#rec2352561831 { max-width: 2200px; }
@media (min-width: 1921px) {
  #rec2352561831 { margin: auto; }
}

.t-submit { width: 100% !important; }

/* ========== ОСНОВНОЙ БЛОК ========== */
.vb-root {
  margin: 50px 150px 0;
  max-width: 1820px;
  background: radial-gradient(circle at center, #111, #1a1a2e);
  background-size: cover;
  border-radius: 16px;
  border: 3px solid #3b82f4;
  padding: 24px;
  color: white;
  box-sizing: border-box;
  font-size: 20px;
  font-family: var(--t-text-font, Arial);
}

/* ЗАГОЛОВОК */
.vb-title {
  font-size: 55px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin: 0;
}
.vb-title strong {
  background: linear-gradient(135deg, #3b82f4, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* БЕЙДЖ */
.vb-badge {
  display: flex;
  align-items: stretch;
  background: #1E232E;
  border-radius: 16px;
  overflow: hidden;
  font-weight: 700;
  max-width: 100%;
}
.vb-badge-white {
  flex: 0 0 20%;
  background: #4B505F;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.vb-badge-white img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.vb-badge-text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: white;
}

/* LAYOUT */
.vb-main {
  display: flex;
  align-items: center;
  gap: 24px;
}
.vb-left {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vb-car-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-car-img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

/* ФИЧИ */
.vb-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-direction: column;
}
.popup {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border-radius: 40px;
  padding: 0;
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: 300;
  transition: 0.2s;
}
.popup-icon {
  width: 48px;
  height: 48px;
  background: #4B505F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  flex-shrink: 0;
}
.popup-icon img { width: 28px; display: block; }
.popup:hover .popup-icon { background: #3b82f4; }
.popup-text {
  line-height: 1.3;
  color: white;
  text-decoration: none;
  text-align: left;
}
.popup-text strong { color: #3b82f4; font-weight: bold; }

/* ВЫБОР ЦВЕТА */
.car_colors {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  width: 100%;
}
.car_colors-swatches {
  display: flex;
  flex: 1;
  gap: 11px;
}
.car_colors-swatches > div {
  flex: 1 1 0;
  height: 25px;
  border-radius: 12px;
  border: 1px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: cover;
}
.car_colors-swatches > div.active {
  flex: 3 1 0;
  border-color: #3b82f4;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.5);
}
.car_colors-swatches > div:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* CTA-КНОПКИ — общая база */
.vb-btn,
.vb-btn-primary {
  flex: 1;
  min-width: 150px;
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  color: white;
}
.vb-btn {
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.vb-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}
.vb-btn-primary {
  background: linear-gradient(135deg, #3b82f4, #2563eb);
  border: 2px solid transparent;
  animation: pulse 1.5s infinite;
}
.vb-btn-primary:hover {
  background: #2b61b9;
  border-color: white;
  animation: none;
  color: white;
  text-decoration: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(59,130,246,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(59,130,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}
.vb-cta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ========== КАРУСЕЛЬ ========== */
.carousel-section {
  margin: 40px 150px 50px;
  box-sizing: border-box;
  max-width: 1820px;
}
.carousel-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.carousel-wrapper { flex: 1; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  justify-content: space-between;
}
.carousel-item {
  flex-shrink: 0;
  padding: 0 8px;
  box-sizing: border-box;
  cursor: pointer;
}
.carousel-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  display: block;
}
.carousel-item img:hover { transform: scale(1.02); }

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.20);
  background: url('https://voyah-tver.ru/img/arrow.svg') 50% no-repeat;
  background-size: 20px 20px;
  transition: all .5s ease-in-out;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 !important;
}
.carousel-btn:first-child { transform: rotate(270deg); }
.carousel-btn:last-child  { transform: rotate(90deg); }
.carousel-btn:hover {
  border-color: rgba(255,255,255,0.5);
  background-color: rgba(59,130,246,0.8);
}

.carousel-scrollbar {
  position: relative;
  left: 1%;
  width: 98%;
  margin-top: 14px;
  height: 4px;
  background: rgb(255 255 255 / 20%);
  border-radius: 10px;
  touch-action: none;
  display: none;
}
.carousel-scrollbar-drag {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: #3b82f4;
  border-radius: 10px;
  will-change: transform;
  width: calc(100% / 6 * 2) !important;
}

/* ========== ЛАЙТБОКС ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 30px;
  font-size: 42px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
  z-index: 1001;
  transition: all 0.3s ease;
}
.lightbox-close:hover { color: #3b82f4; }

.lightbox-prev,
.lightbox-next {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.20);
  background: url('https://voyah-tver.ru/img/arrow.svg') 50% no-repeat;
  background-size: 20px 20px;
  background-color: rgba(0,0,0,0.5);
  transition: all .5s ease-in-out;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1001;
  position: fixed;
  top: 50%;
}
.lightbox-prev {
  left: 30px;
  transform: translateY(-50%) rotate(270deg);
}
.lightbox-next {
  right: 30px;
  transform: translateY(-50%) rotate(90deg);
}
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: rgba(255,255,255,0.5);
  background-color: rgba(59,130,246,0.8);
}

/* ========== БЛОК КОМПЛЕКТАЦИЙ ========== */
.volga-trims {
  margin: 50px 150px;
  font-family: var(--t-text-font, Arial);
  max-width: 1820px;
  font-size: 20px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.model-tabs { display: flex; gap: 20px; flex-wrap: wrap; }

.tab-btn {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border: 2px solid #3b82f4;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.2s;
  color: #1e293b;
  font-family: inherit;
}
.tab-btn.active { background: #3b82f4; color: white; box-shadow: 0 8px 20px rgba(59,130,246,0.3); }
.tab-btn:hover:not(.active) { background: #dbeafe; }

.compare-link {
  background: rgba(59,130,246,0.12);
  backdrop-filter: blur(4px);
  border: 2px solid #3b82f4;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.2s;
  color: #3b82f4;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.compare-link:hover {
  background: #3b82f4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59,130,246,0.3);
  text-decoration: none;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  min-height: 500px;
}

.trim-card {
  background: transparent;
  border: 2px solid #3a80f0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.trim-card:hover { box-shadow: 0 20px 32px -12px rgba(0,0,0,0.2); }

.card-image {
  max-width: 100%;
  height: 240px;
  object-fit: contain;
  background: radial-gradient(circle at center, #111, #1a1a2e);
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.card-content {
  padding: 20px 22px 24px;
  border-radius: 0 0 28px 28px;
  flex: 1;
  background: linear-gradient(0.375turn, rgba(0,0,0,1) 0%, rgba(11,26,48,1) 100%);
}
.card-title { font-size: 24px; font-weight: 800; margin-bottom: 6px; color: #fff; }

.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3b82f4;
  color: white;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  margin: 12px 0 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.specs { list-style: none; margin: 0 0 20px; padding: 0; }
.specs li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 15px;
  color: #fff;
}
.spec-label { font-weight: 600; color: #cbd5e1; }
.spec-value { font-weight: 700; color: #fff; white-space: normal; word-break: break-word; text-align: right; }
.spec-feature {
  display: block;
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.card-buttons { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.card-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 40px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  border: none;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: white;
  transition: 0.2s;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}
.card-btn-primary { background: #3b82f4; color: white; }
.card-btn-primary:hover { background: #2563eb; transform: scale(1.02); text-decoration: none; color: white; }
.card-btn-secondary:hover { background: rgba(255,255,255,0.3); transform: scale(1.02); text-decoration: none; color: white; }

/* overrides для card-content badges */
.card-content .vb-badge { margin: 15px 0; }
.card-content .vb-badge-white { padding: 0 10px; background: #2a3142; }
.card-content .vb-badge-white img { width: 30px; height: 30px; }
.card-content .vb-badge-text { padding: 15px; }
.card-buttons .vb-btn-primary { animation: none; }
.choose-model { color: white; font-size: 22px; }

/* ========== ХАРАКТЕРИСТИКИ ========== */
.dimensions-bar {
  width: 100%;
  background: transparent;
  margin: 20px 0 30px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.dimensions-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dimension-item {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.dimension-item:last-child { border-right: none; }
.dimension-value { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.dimension-label { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.04em; }

#allrecords ul { padding-left: 0; }

/* ========== RESPONSIVE ========== */
@media (min-width: 1921px) {
  .vb-root,
  .volga-trims { margin: 50px auto 0; }
  .carousel-section { margin: 50px auto 50px !important; }
}

@media (max-width: 1440px) {
  html { margin-top: 152px; }
  #rec2317462441._header-scroll { top: -90px; }
  .vb-root,
  .carousel-section,
  .volga-trims { margin-left: 100px; margin-right: 100px; }
}

@media (max-width: 1200px) {
  .vb-root,
  .volga-trims { margin-left: 50px; margin-right: 50px; font-size: 18px; }
  .carousel-section { margin-left: 50px; margin-right: 50px; }
  .volga-trims .vb-badge { font-size: 15px; }
}

@media (max-width: 1100px) {
  .vb-main { flex-direction: column; }
  .vb-left { flex: none; width: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px; }
  .vb-car-container { width: 100%; }
  .vb-car-img { max-height: 280px; }
  .vb-badge { width: 100%; }
  .vb-features { flex-direction: row !important; }
}

@media (min-width: 1100px) and (max-width: 1500px) {
  .car_colors { flex-direction: column; align-items: flex-start; gap: 8px; }
  .car_colors-swatches { width: 100%; }
}

@media (min-width: 901px) and (max-width: 1599px) {
  .card-image { height: 180px !important; }
}

@media (max-width: 960px) {
  .vb-root,
  .carousel-section,
  .volga-trims { margin-left: 15px; margin-right: 15px; }
}

@media (max-width: 899px) {
  .cards-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next {
    position: fixed;
    top: auto; bottom: 30px;
    transform: none;
    left: auto; right: auto;
  }
  .lightbox-prev { left: calc(50% - 70px); transform: rotate(270deg); }
  .lightbox-next { right: calc(50% - 70px); transform: rotate(90deg); }
  .lightbox-image { max-height: 60vh; }
  .dimensions-grid { flex-direction: column; gap: 16px; }
  .dimension-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 12px;
    width: 100%;
  }
  .dimension-item:last-child { border-bottom: none; padding-bottom: 0; }
  .dimension-value { font-size: 24px; }
}

@media (max-width: 640px) {
  html { margin-top: 137px; }
  .vb-root { font-size: 16px !important; padding: 16px 12px; }
  .vb-title { font-size: 35px !important; }
  .vb-btn-primary,
  .vb-btn { font-size: 14px !important; }
  .vb-left { flex-direction: column; }
  .vb-car-img { max-height: 200px; }
  .vb-cta { flex-direction: column; }
  .vb-btn, .vb-btn-primary { min-width: unset; }
  .popup { font-size: 16px; gap: 10px; }
  .popup-icon { width: 40px; height: 40px; }
  .popup-icon img { width: 22px; }
  .car_colors { flex-direction: column; align-items: flex-start; gap: 8px; }
  .car_colors-swatches { width: 100%; }
  .carousel-btn { display: none; }
  .carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .carousel-wrapper::-webkit-scrollbar { display: none; }
  .carousel-wrapper { scrollbar-width: none; -ms-overflow-style: none; }
  .carousel-track { transition: none; }
  .carousel-item { scroll-snap-align: start; }
  .carousel-scrollbar { display: block; }
  .tab-btn { padding: 8px 20px; font-size: 15px; width: 100%; }
  .compare-link { padding: 8px 20px; font-size: 15px; }
  .card-title { font-size: 20px; }
  .volga-trims { font-size: 16px !important; }
}

@media (max-width: 950px) {
  .top-bar { flex-direction: column; align-items: center; justify-content: center; }
  .top-bar-left { flex-direction: column; align-items: center; width: 100%; }
  .model-tabs { justify-content: center; width: 100%; }
  .compare-wrapper { width: auto; text-align: center; }
}

@media (max-width: 480px) {
  html { margin-top: 127px; }
}

 .accordion-accii {
        background: #000000;
        color: #ffffff;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Основной контейнер с отступами как у vb-root */
    .accordion-accii-container {
        max-width: 1920px;
        margin: 0 auto;
    }

    /* Содержимое блока (с отступами по бокам, сверху 0) */
    .accordion-accii-content {
        padding: 0 150px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease, padding 0.3s ease;
        background: #000000;
    }

    /* Открытое состояние — сверху 0, снизу 50px */
    .accordion-accii.open .accordion-accii-content {
        max-height: 800px;
        padding: 0 150px 50px 150px;
    }

    /* Внутренний текст */
    .accordion-accii-text {
        font-size: 16px;
        line-height: 1.6;
        color: #ffffff;
    }

    .accordion-accii-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .accordion-accii-text p {
        margin-bottom: 15px;
        color: #e0e0e0;
    }

    /* ===== АДАПТИВНЫЕ ОТСТУПЫ (как у vb-root, сверху 0) ===== */
    @media (max-width: 1440px) {
        .accordion-accii-content {
            padding: 0 100px;
        }
        .accordion-accii.open .accordion-accii-content {
            padding: 0 100px 50px 100px;
        }
    }

    @media (max-width: 1200px) {
        .accordion-accii-content {
            padding: 0 50px;
        }
        .accordion-accii.open .accordion-accii-content {
            padding: 0 50px 112px 50px;
        }
    }

    @media (max-width: 960px) {
        .accordion-accii-content {
            padding: 0 15px;
        }
        .accordion-accii.open .accordion-accii-content {
            padding: 0 15px 112px 15px;
        }
    }

    @media (min-width: 1921px) {
        .accordion-accii-container {
            max-width: 1820px;
        }
        .accordion-accii-content {
            padding: 0;
        }
        .accordion-accii.open .accordion-accii-content {
            padding: 0 0 50px 0;
        }
    }