.vpv2-reservation-search {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #d9e6f7;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(11, 43, 92, 0.14);
  color: #09285a;
}

.vpv2-reservation-search__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.vpv2-reservation-search__head span,
.vpv2-cars-info__summary span,
.vpv2-car-card span {
  color: #df1422;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vpv2-reservation-search__head strong {
  color: #09285a;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 950;
}

.vpv2-reservation-search__grid {
  display: grid;
  grid-template-columns: minmax(310px, 1.25fr) minmax(190px, 0.75fr) minmax(190px, 0.55fr);
  gap: 18px;
  align-items: end;
}

.vpv2-field {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
}

.vpv2-label {
  color: #09285a;
  font-size: 14px;
  font-weight: 900;
}

.vpv2-reservation-search select,
.vpv2-range-trigger {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid #cadbf0;
  border-radius: 16px;
  background: #fff;
  color: #09285a;
  font-size: 17px;
  font-weight: 900;
}

.vpv2-select-field {
  position: relative;
}

.vpv2-select-field::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 23px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #09285a;
  border-bottom: 2px solid #09285a;
  pointer-events: none;
  transform: rotate(45deg);
}

.vpv2-select-field select {
  appearance: none;
  padding-right: 48px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.vpv2-range-trigger {
  display: grid;
  gap: 3px;
  text-align: left;
  cursor: pointer;
}

.vpv2-range-trigger:hover,
.vpv2-range-trigger:focus-visible,
.vpv2-reservation-search select:focus,
.vpv2-catalog-filter select:focus {
  border-color: #9fc7f4;
  background: #f1f7ff;
  outline: 3px solid rgba(128, 183, 241, 0.22);
}

.vpv2-range-trigger small {
  color: #65758f;
  font-size: 12px;
  font-weight: 800;
}

.vpv2-range-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  width: min(680px, calc(100vw - 40px));
  display: none;
  padding: 18px;
  border: 1px solid #cadbf0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(9, 40, 90, 0.2);
}

.vpv2-range-panel.is-open {
  display: grid;
  gap: 14px;
}

.vpv2-calendar-head {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
}

.vpv2-calendar-head strong {
  text-align: center;
  color: #09285a;
  font-size: 18px;
  font-weight: 950;
  text-transform: capitalize;
}

.vpv2-calendar-head button {
  width: 42px;
  height: 42px;
  border: 1px solid #d8e4f2;
  border-radius: 12px;
  background: #f6f9fd;
  color: #09285a;
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}

.vpv2-calendar-weekdays,
.vpv2-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.vpv2-calendar-weekdays {
  gap: 4px;
  color: #65758f;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.vpv2-calendar-grid {
  gap: 6px;
}

.vpv2-day {
  position: relative;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: #f8fbff;
  color: #09285a;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  writing-mode: horizontal-tb;
  font-variant-numeric: tabular-nums;
}

.vpv2-day span {
  display: block;
  min-width: 2ch;
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.vpv2-day.is-muted {
  color: #9badc4;
  background: #fbfdff;
}

.vpv2-day.is-range {
  background: #eaf3ff;
  color: #0b57d0;
}

.vpv2-day.is-start,
.vpv2-day.is-end {
  background: #09285a;
  color: #fff;
  box-shadow: 0 10px 22px rgba(9, 40, 90, 0.22);
}

.vpv2-day.is-disabled {
  color: #c9d4e3;
  background: #f8fafc;
  cursor: not-allowed;
}

.vpv2-time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid #edf2f8;
  border-radius: 14px;
  background: #f8fbff;
}

.vpv2-time-row--single {
  grid-template-columns: 1fr;
}

.vpv2-time-row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #52627a;
  font-size: 12px;
  font-weight: 900;
}

.vpv2-time-row span {
  color: #09285a;
  font-size: 13px;
  font-weight: 950;
}

.vpv2-time-row input {
  width: 140px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d8e4f2;
  border-radius: 12px;
  color: #09285a;
  font-weight: 850;
}

.vpv2-quick-days {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vpv2-quick-days button,
.vpv2-range-done {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d8e4f2;
  border-radius: 999px;
  background: #f6f9fd;
  color: #09285a;
  font-weight: 900;
  cursor: pointer;
}

.vpv2-range-done {
  justify-self: end;
  border-color: #09285a;
  background: #09285a;
  color: #fff;
}

.vpv2-range-panel p {
  margin: 0;
  color: #65758f;
  font-size: 12px;
  font-weight: 750;
}

.vpv2-search-submit {
  min-height: 62px;
  border: 0;
  border-radius: 16px;
  background: #df1422;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(223, 20, 34, 0.25);
}

.vpv2-reservation-search__location {
  width: fit-content;
  margin: 24px auto 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f3f7fc;
  color: #52627a;
  font-weight: 850;
}

.vpv2-cars-info {
  max-width: 1180px;
  margin: 0 auto;
  color: #09285a;
}

.vpv2-page-title {
  margin: 0 0 26px;
  color: #160b06;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 950;
}

.vpv2-cars-info__summary {
  margin-bottom: 28px;
  padding: 0;
  border: 1px solid #d9e6f7;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.vpv2-cars-info__summary h2 {
  margin: 8px 0;
  color: #09285a;
  font-size: 30px;
  line-height: 1.15;
}

.vpv2-cars-info__summary p {
  margin: 0;
  color: #52627a;
  font-weight: 850;
}

.vpv2-cars-info__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.vpv2-itinerary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1 1 auto;
}

.vpv2-itinerary-card {
  min-height: 152px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 24px 28px;
  border-right: 1px solid #d9e6f7;
}

.vpv2-itinerary-card span {
  color: #160b06;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.vpv2-itinerary-card strong,
.vpv2-itinerary-card b {
  color: #09285a;
  font-size: 18px;
  font-weight: 900;
}

.vpv2-itinerary-card p {
  margin: 0;
  color: #52627a;
  font-weight: 750;
}

.vpv2-itinerary-card em {
  color: #52627a;
  font-style: italic;
  font-weight: 950;
}

.vpv2-cars-info__summary a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid #cadbf0;
  border-radius: 999px;
  color: #09285a;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.vpv2-catalog-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  flex: 0 0 auto;
  padding-right: 20px;
}

.vpv2-catalog-meta strong {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f7fc;
  color: #09285a;
  font-size: 13px;
  font-weight: 950;
}

.vpv2-catalog-meta small {
  color: #00884a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.vpv2-catalog-meta small.is-stale {
  color: #9a3412;
}

.vpv2-catalog-list {
  display: grid;
  gap: 16px;
}

.vpv2-car-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr) 210px;
  gap: 34px;
  align-items: center;
  min-height: 280px;
  padding: 36px;
  border: 1px solid #d9e6f7;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(11, 43, 92, 0.08);
}

.vpv2-car-card[hidden] {
  display: none !important;
}

.vpv2-car-visual {
  min-height: 200px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  overflow: hidden;
  color: #09285a;
  background: linear-gradient(145deg, #eef4fb, #f8fbff);
  border: 1px solid #d9e6f7;
}

.vpv2-car-visual b {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  color: #09285a;
  font-size: 28px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(11, 43, 92, 0.1);
}

.vpv2-car-visual strong {
  color: #09285a;
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
}

.vpv2-car-visual span {
  color: #65758f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vpv2-car-body {
  display: grid;
  gap: 18px;
  align-content: center;
}

.vpv2-car-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.vpv2-car-card h3 {
  margin: 4px 0 0;
  color: #09285a;
  font-size: 31px;
  line-height: 1.08;
}

.vpv2-rate {
  min-width: 118px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #f3f7fc;
  color: #09285a;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.vpv2-car-card p {
  max-width: 560px;
  margin: 0;
  color: #52627a;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 750;
}

.vpv2-car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vpv2-car-specs span {
  padding: 8px 10px;
  border: 1px solid #d9e6f7;
  border-radius: 999px;
  background: #f8fbff;
  color: #52627a;
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.vpv2-card-cta {
  align-self: center;
  min-width: 142px;
  padding: 18px 22px;
  border-radius: 999px;
  background: #df1422;
  color: #fff;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(223, 20, 34, 0.22);
}

.vpv2-card-cta:hover,
.vpv2-card-cta:focus-visible,
.vpv2-search-submit:hover,
.vpv2-search-submit:focus-visible,
.vpv2-check-next:hover,
.vpv2-check-next:focus-visible,
.vpv2-check-submit:hover,
.vpv2-check-submit:focus-visible {
  color: #fff;
  text-decoration: none;
}

.vpv2-catalog-filter {
  display: grid;
  grid-template-columns: minmax(310px, 1fr) minmax(190px, .42fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #d9e6f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 43, 92, 0.08);
}

.vpv2-catalog-filter .vpv2-range-panel {
  width: min(680px, calc(100vw - 40px));
}

.vpv2-check {
  max-width: 1180px;
  margin: 0 auto;
  color: #09285a;
}

.vpv2-stepbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  border: 1px solid #d9dce3;
  background: #fff;
}

.vpv2-stepbar li {
  position: relative;
  min-height: 50px;
  display: block;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #65758f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vpv2-stepbar li::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  right: -18px;
  width: 36px;
  height: 36px;
  border-top: 1px solid #d9dce3;
  border-right: 1px solid #d9dce3;
  background: inherit;
  transform: translateY(7px) rotate(45deg);
}

.vpv2-stepbar li:last-child::after {
  display: none;
}

.vpv2-stepbar a {
  position: relative;
  z-index: 3;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.vpv2-stepbar b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.vpv2-stepbar li.is-complete {
  background: #fff;
  color: #2b87bd;
}

.vpv2-stepbar li.is-current {
  background: #fff;
  color: #2b87bd;
}

.vpv2-stepbar li.is-current b {
  background: #2b87bd;
  color: #fff;
}

.vpv2-check__head {
  margin-bottom: 18px;
}

.vpv2-check__head span,
.vpv2-trip-card > span {
  color: #df1422;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vpv2-check__head h2 {
  margin: 6px 0;
  color: #09285a;
  font-size: 34px;
  line-height: 1.08;
}

.vpv2-check__head p {
  margin: 0;
  color: #52627a;
  font-weight: 800;
}

.vpv2-review-notice {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  background: #eff6ff;
  color: #09285a;
}

.vpv2-review-notice strong {
  font-size: 16px;
  font-weight: 950;
}

.vpv2-review-notice span {
  color: #52627a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.vpv2-check__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.vpv2-check.is-review-step .vpv2-check__layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
}

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

.vpv2-check-form,
.vpv2-trip-card,
.vpv2-order-card {
  padding: 24px;
  border: 1px solid #d9e6f7;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(11, 43, 92, 0.1);
}

.vpv2-check-section[hidden],
[data-vpv2-final-panel][hidden],
.vpv2-check-actions [hidden] {
  display: none !important;
}

.vpv2-check-wizard {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px;
  border: 1px solid #d9e6f7;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.vpv2-check-wizard button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: #52627a;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.vpv2-check-wizard b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: #fff;
}

.vpv2-check-wizard button.is-active {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #09285a;
  box-shadow: 0 12px 26px rgba(11, 43, 92, .08);
}

.vpv2-check-wizard button.is-ready {
  border-color: #74e6a4;
  background: linear-gradient(180deg, #ecfdf5, #dcfce7);
  color: #087443;
  box-shadow: 0 12px 26px rgba(8, 116, 67, .09);
}

.vpv2-check-wizard button.is-ready b {
  border-color: #087443;
  background: #087443;
  color: #fff;
}

.vpv2-check-wizard button.is-done {
  border-color: #74e6a4;
  background: linear-gradient(180deg, #ecfdf5, #dcfce7);
  color: #087443;
  box-shadow: 0 12px 26px rgba(8, 116, 67, .09);
}

.vpv2-check-wizard button.is-done b {
  border-color: #087443;
  background: #087443;
  color: #fff;
}

.vpv2-check-wizard button:hover,
.vpv2-check-wizard button:focus-visible {
  transform: translateY(-1px);
  border-color: #93c5fd;
  background: #dbeafe;
  color: #09285a;
  outline: none;
}

.vpv2-check-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #edf2f8;
}

.vpv2-step-error {
  margin: -8px 0 18px;
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 12px;
  background: #fff1f2;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 900;
}

.vpv2-step-error[hidden] {
  display: none !important;
}

.vpv2-submit-status[hidden] {
  display: none !important;
}

.vpv2-field-invalid {
  border-color: #ef4444 !important;
  background: #fff7f7 !important;
}

.vpv2-check-back,
.vpv2-check-next {
  min-height: 52px;
  min-width: 132px;
  border: 1px solid #cadbf0;
  border-radius: 14px;
  background: #fff;
  color: #09285a;
  font-weight: 950;
  cursor: pointer;
}

.vpv2-check-next {
  margin-left: auto;
  border-color: #09285a;
  background: #09285a;
  color: #fff;
}

.vpv2-order-trip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: center;
}

.vpv2-order-trip h3 {
  margin: 0 0 14px;
  color: #160b06;
  font-size: 24px;
}

.vpv2-order-point {
  position: relative;
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding-left: 22px;
}

.vpv2-order-point::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #d9e6f7;
  border-radius: 999px;
  background: #fff;
}

.vpv2-order-point span {
  color: #160b06;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vpv2-order-point strong,
.vpv2-order-point b {
  color: #09285a;
  font-size: 14px;
  font-weight: 900;
}

.vpv2-order-point p {
  margin: 0;
  color: #52627a;
  font-size: 13px;
  font-weight: 750;
}

.vpv2-order-visual {
  min-height: 170px;
  display: grid;
  place-items: center;
  gap: 10px;
  border-radius: 18px;
  background: linear-gradient(145deg, #eef4fb, #fff);
  color: #09285a;
}

.vpv2-order-visual b {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  font-size: 30px;
  box-shadow: 0 14px 34px rgba(11,43,92,.11);
}

.vpv2-order-visual span {
  font-weight: 950;
}

.vpv2-price-table {
  display: grid;
  margin-top: 20px;
  border: 1px solid #e1e9f4;
  border-radius: 14px;
  overflow: hidden;
}

.vpv2-price-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) .45fr .65fr .65fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid #edf2f8;
  color: #52627a;
  font-size: 13px;
  font-weight: 850;
}

.vpv2-price-table > div:first-child {
  border-top: 0;
}

.vpv2-price-table .vpv2-price-head {
  background: #f8fbff;
  color: #65758f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.vpv2-price-table small {
  display: block;
  margin-top: 2px;
  color: #65758f;
  font-size: 11px;
  font-weight: 750;
}

.vpv2-price-table strong,
.vpv2-price-table .is-total {
  color: #09285a;
  font-weight: 950;
}

.vpv2-final-review {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #d9e6f7;
  border-radius: 16px;
  background: #f8fbff;
}

.vpv2-final-review h3 {
  margin: 0 0 12px;
  color: #09285a;
  font-size: 18px;
}

.vpv2-final-review dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.vpv2-final-review div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid #edf2f8;
  border-radius: 12px;
  background: #fff;
}

.vpv2-final-review dt {
  color: #65758f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.vpv2-final-review dd {
  margin: 0;
  color: #09285a;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.vpv2-payment-choice {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #d9e6f7;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 16px 38px rgba(11, 43, 92, .08);
}

.vpv2-payment-choice h3 {
  margin: 0 0 6px;
  color: #09285a;
  font-size: 18px;
}

.vpv2-payment-choice p {
  margin: 0 0 14px;
  color: #52627a;
  font-size: 13px;
  font-weight: 800;
}

.vpv2-square-env {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 900;
}

.vpv2-square-env[hidden] {
  display: none !important;
}

.vpv2-square-env strong {
  color: inherit;
  font-size: 13px;
  white-space: nowrap;
}

.vpv2-square-env span {
  color: inherit;
  line-height: 1.4;
  text-align: right;
}

.vpv2-square-env.is-sandbox {
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #9a3412;
}

.vpv2-square-env.is-live {
  border: 1px solid #86efac;
  background: #f0fdf4;
  color: #087443;
}

.vpv2-square-env.is-error {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #b91c1c;
}

.vpv2-payment-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vpv2-payment-options label {
  min-height: 126px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid #d9e6f7;
  border-radius: 18px;
  background: #f8fbff;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.vpv2-payment-options label:has(input:checked) {
  border-color: #74e6a4;
  background: linear-gradient(180deg, #ecfdf5, #f8fffb);
  box-shadow: 0 14px 34px rgba(8, 116, 67, .12);
}

.vpv2-payment-options label:hover {
  transform: translateY(-1px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 28px rgba(11, 43, 92, .08);
}

.vpv2-payment-options input {
  margin-top: 3px;
}

.vpv2-payment-options b,
.vpv2-payment-options small {
  display: block;
}

.vpv2-payment-options b {
  color: #09285a;
  font-size: 14px;
  font-weight: 950;
}

.vpv2-payment-options small {
  margin-top: 5px;
  color: #52627a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.vpv2-submit-status {
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
}

.vpv2-submit-status.is-success {
  border: 1px solid #86efac;
  background: #f0fdf4;
  color: #087443;
}

.vpv2-submit-status.is-error {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #b91c1c;
}

.vpv2-square-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .96)),
    radial-gradient(circle at 92% 12%, rgba(223, 20, 34, .08), transparent 34%);
  box-shadow: 0 18px 42px rgba(11, 43, 92, .1);
}

.vpv2-square-panel[hidden],
.vpv2-square-status[hidden] {
  display: none !important;
}

.vpv2-square-panel h3 {
  margin: 0 0 6px;
  color: #09285a;
  font-size: 22px;
}

.vpv2-square-panel p {
  margin: 0 0 14px;
  color: #52627a;
  font-size: 13px;
  font-weight: 800;
}

.vpv2-square-card {
  min-height: 94px;
  padding: 16px;
  border: 1px solid #d9e6f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.vpv2-square-pay {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 0;
  border-radius: 14px;
  background: #df1422;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(223, 20, 34, .18);
}

.vpv2-square-pay:disabled {
  opacity: .7;
  cursor: wait;
}

.vpv2-square-status {
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.vpv2-square-status.is-success {
  border: 1px solid #86efac;
  background: #f0fdf4;
  color: #087443;
}

.vpv2-square-status.is-error {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #b91c1c;
}

.vpv2-check-form h3 {
  margin: 0 0 12px;
  color: #09285a;
  font-size: 18px;
}

.vpv2-check-section {
  padding: 18px 0;
  border-top: 1px solid #edf2f8;
}

.vpv2-check-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.vpv2-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vpv2-check-grid label {
  display: grid;
  gap: 7px;
  color: #09285a;
  font-size: 13px;
  font-weight: 900;
}

.vpv2-check-grid .form-wide { grid-column: 1 / -1; }

.vpv2-check-grid input,
.vpv2-check-grid select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cadbf0;
  border-radius: 12px;
  background: #fff;
  color: #09285a;
  font-weight: 850;
}

.vpv2-check-grid select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #09285a 50%),
    linear-gradient(135deg, #09285a 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%,
    100% 0;
  background-size: 7px 7px, 7px 7px, 2.5em 2.5em;
  background-repeat: no-repeat;
  cursor: pointer;
}

.vpv2-select-field select {
  cursor: pointer;
}

.vpv2-check-grid small {
  color: #9a3412;
  font-size: 12px;
  font-weight: 850;
}

.vpv2-check-grid textarea {
  min-height: 112px;
  padding: 12px 14px;
  border: 1px solid #cadbf0;
  border-radius: 12px;
  color: #09285a;
  font: inherit;
  font-weight: 850;
  resize: vertical;
}

.vpv2-check-grid input:focus,
.vpv2-check-grid select:focus,
.vpv2-select-field select:focus {
  border-color: #9fc7f4;
  outline: 3px solid rgba(128, 183, 241, 0.22);
}

.vpv2-check-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.vpv2-check-choice label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid #d9e6f7;
  border-radius: 14px;
  background: #f8fbff;
  color: #09285a;
  font-weight: 900;
}

.vpv2-check-choice input:checked + span {
  color: #09285a;
}

.vpv2-check-choice[hidden],
.vpv2-check-choice [hidden],
.vpv2-policy-note[hidden],
.vpv2-toll-details[hidden],
.vpv2-toll-actions[hidden],
.vpv2-toll-result[hidden],
[data-vpv2-transponder-ack][hidden],
[data-vpv2-insurance-other][hidden] {
  display: none !important;
}

.vpv2-section-copy {
  margin: -4px 0 14px;
  color: #52627a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.vpv2-terms-check {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #fecaca;
  border-radius: 14px;
  background: #fff7f7;
  color: #09285a;
  font-size: 13px;
  font-weight: 900;
}

.vpv2-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vpv2-doc-grid label {
  position: relative;
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px dashed #bcd0e8;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f7fbff);
  color: #09285a;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.vpv2-doc-grid label:hover,
.vpv2-doc-grid label:focus-within {
  border-color: #9fc7f4;
  background: #eff6ff;
  box-shadow: 0 14px 30px rgba(11, 43, 92, .09);
  transform: translateY(-1px);
}

.vpv2-doc-grid b {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #09285a;
  color: #fff;
  font-size: 30px;
  font-weight: 850;
}

.vpv2-doc-grid strong {
  color: #09285a;
  font-size: 14px;
  font-weight: 950;
}

.vpv2-doc-grid span {
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef4fb;
  color: #52627a;
  font-size: 12px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vpv2-doc-grid input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.vpv2-policy-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #fdba74;
  border-radius: 12px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 13px;
  font-weight: 850;
}

.vpv2-toll-details {
  margin: 14px 0;
  padding: 16px;
  border: 1px solid #d9e6f7;
  border-radius: 16px;
  background: #f8fbff;
}

.vpv2-stop-builder {
  display: grid;
  gap: 10px;
}

.vpv2-stop-builder__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.vpv2-stop-builder__head strong {
  color: #09285a;
  font-size: 13px;
  font-weight: 950;
}

.vpv2-stop-builder__head button,
.vpv2-stop-input-row button {
  border: 1px solid #cadbf0;
  border-radius: 12px;
  background: #fff;
  color: #09285a;
  font-weight: 950;
  cursor: pointer;
}

.vpv2-stop-builder__head button {
  min-height: 40px;
  padding: 0 14px;
}

.vpv2-stop-list {
  display: grid;
  gap: 10px;
}

.vpv2-stop-list label {
  gap: 7px;
}

.vpv2-stop-list label > span {
  color: #65758f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.vpv2-stop-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
}

.vpv2-stop-input-row button {
  min-height: 50px;
  font-size: 22px;
  line-height: 1;
}

.vpv2-toll-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.vpv2-toll-actions button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: #09285a;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.vpv2-toll-actions button:disabled {
  opacity: .65;
  cursor: wait;
}

.vpv2-toll-actions span {
  color: #65758f;
  font-size: 12px;
  font-weight: 850;
}

.vpv2-toll-result {
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
}

.vpv2-toll-result.is-success {
  border: 1px solid #86efac;
  background: #f0fdf4;
  color: #087443;
}

.vpv2-toll-result.is-error {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #b91c1c;
}

.vpv2-deposit-box {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid #86efac;
  border-radius: 14px;
  background: #f0fdf4;
}

.vpv2-deposit-box strong,
.vpv2-deposit-box span,
.vpv2-deposit-box b {
  display: block;
}

.vpv2-deposit-box strong { font-weight: 950; }
.vpv2-deposit-box span { margin-top: 5px; color: #52627a; font-size: 13px; font-weight: 800; }
.vpv2-deposit-box b { color: #09285a; font-size: 28px; }

.vpv2-check-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: 0;
  border-radius: 14px;
  background: #09285a;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.vpv2-check-actions .vpv2-check-submit {
  width: auto;
  min-width: 230px;
  margin-top: 0;
  margin-left: auto;
}

.vpv2-trip-card {
  position: sticky;
  top: 24px;
}

.vpv2-trip-card h3 {
  margin: 8px 0;
  color: #09285a;
  font-size: 26px;
}

.vpv2-trip-card p {
  color: #52627a;
  font-weight: 800;
}

.vpv2-trip-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.vpv2-trip-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid #edf2f8;
}

.vpv2-trip-card dt {
  color: #65758f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vpv2-trip-card dd {
  margin: 0;
  color: #09285a;
  font-weight: 950;
  text-align: right;
}

.vpv2-total-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #edf2f8;
}

.vpv2-total-box div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #52627a;
  font-size: 13px;
  font-weight: 900;
}

.vpv2-total-box strong {
  color: #09285a;
  font-size: 15px;
  font-weight: 950;
}

.vpv2-total-box .is-total {
  margin-top: 4px;
  padding: 12px;
  border-radius: 14px;
  background: #f3f7fc;
  color: #09285a;
}

.vpv2-total-box .is-total strong {
  font-size: 20px;
}

@media (max-width: 900px) {
  .vpv2-reservation-search__head {
    display: grid;
  }

  .vpv2-reservation-search__grid {
    grid-template-columns: 1fr 1fr;
  }

  .vpv2-catalog-filter {
    grid-template-columns: 1fr 1fr;
  }

  .vpv2-catalog-filter .vpv2-search-submit {
    grid-column: 1 / -1;
  }

  .vpv2-car-card,
  .vpv2-check__layout,
  .vpv2-order-trip,
  .vpv2-payment-options,
  .vpv2-itinerary-grid {
    grid-template-columns: 1fr;
  }

  .vpv2-check.is-review-step .vpv2-check__layout {
    grid-template-columns: 1fr;
  }

  .vpv2-card-cta {
    width: 100%;
  }

}

@media (max-width: 640px) {
  .vpv2-reservation-search {
    padding: 18px;
    border-radius: 18px;
  }

  .vpv2-reservation-search__grid,
  .vpv2-catalog-filter,
  .vpv2-check-grid,
  .vpv2-check-choice,
  .vpv2-doc-grid,
  .vpv2-final-review dl {
    grid-template-columns: 1fr;
  }

  .vpv2-check-form,
  .vpv2-trip-card,
  .vpv2-order-card {
    padding: 16px;
    border-radius: 16px;
  }

  .vpv2-check-wizard {
    grid-template-columns: repeat(5, minmax(48px, 1fr));
    gap: 4px;
    padding: 5px;
    overflow-x: auto;
  }

  .vpv2-price-table {
    overflow-x: auto;
  }

  .vpv2-price-table > div {
    min-width: 520px;
  }

  .vpv2-final-review div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .vpv2-check-wizard button {
    min-width: 54px;
    min-height: 48px;
    gap: 4px;
    padding: 6px;
    font-size: 9px;
  }

  .vpv2-check-wizard b {
    width: 20px;
    height: 20px;
  }

  .vpv2-square-env {
    align-items: flex-start;
    flex-direction: column;
  }

  .vpv2-square-env span {
    text-align: left;
  }

  .vpv2-check-actions {
    position: sticky;
    bottom: 0;
    z-index: 6;
    margin-inline: -16px;
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
  }

  .vpv2-check-back,
  .vpv2-check-next,
  .vpv2-check-actions .vpv2-check-submit {
    min-width: 0;
    flex: 1;
  }

  .vpv2-toll-actions {
    display: grid;
  }

  .vpv2-cars-info__summary {
    display: grid;
  }

  .vpv2-catalog-meta {
    justify-items: start;
  }

  .vpv2-car-card {
    padding: 10px;
  }

  .vpv2-car-card h3,
  .vpv2-check__head h2 {
    font-size: 26px;
  }

  .vpv2-range-panel {
    position: fixed;
    inset: 12px 12px auto 12px;
    width: auto;
    max-height: calc(100vh - 24px);
    overflow: auto;
    padding: 14px;
  }

  .vpv2-time-row {
    grid-template-columns: 1fr;
  }

  .vpv2-calendar-grid {
    gap: 5px;
  }

  .vpv2-day {
    min-width: 0;
    min-height: 38px;
    padding: 0;
    font-size: 13px;
  }

  .vpv2-calendar-head strong {
    font-size: 17px;
  }

  .vpv2-time-row label {
    display: grid;
    justify-items: stretch;
  }

  .vpv2-time-row input {
    width: 100%;
  }

  .vpv2-reservation-search__location {
    width: 100%;
    border-radius: 14px;
    text-align: center;
  }
}
