/* Tint It portal v92 promoted live CSS */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #05080d;
  color: #eaf8ff;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.ti-header {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  background:
    radial-gradient(circle at 8% 0%, rgba(32, 231, 255, .16), transparent 34%),
    linear-gradient(180deg, #07101a 0%, #05080d 100%);
  border-bottom: 1px solid rgba(65, 210, 255, .35);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
}

.ti-brand-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 174px;
}

.ti-logo {
  font-size: 34px;
  line-height: .9;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(32, 231, 255, .16);
}

.ti-logo span { color: #fff; }
.ti-logo b { color: #20e7ff; }

.ti-header-subtitle {
  margin-top: 5px;
  color: rgba(157, 232, 255, .68);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.ti-header-status-wrap {
  min-width: 320px;
  max-width: min(720px, 58vw);
  min-height: 46px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 8px 14px;
  border: 1px solid rgba(110, 210, 255, .24);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(5, 8, 13, .78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 20px rgba(32, 231, 255, .08);
}

.ti-status-label {
  color: rgba(157, 232, 255, .64);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.ti-status {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 900;
  color: #eaf8ff;
}

.ti-app {
  height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 154px 1fr;
  grid-template-rows: 1fr 184px;
}

.ti-left-tools {
  grid-row: 1 / span 2;
  padding: 16px 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 231, 255, .10), transparent 34%),
    linear-gradient(90deg, #03070c, #08121b);
  border-right: 1px solid rgba(65, 210, 255, .24);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: inset -1px 0 0 rgba(255,255,255,.03);
}

.ti-left-tools-title {
  margin: 2px 2px 4px;
  color: rgba(157, 232, 255, .78);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.ti-left-tools button.ti-tool-btn {
  min-height: 62px;
  width: 100%;
  padding: 8px 9px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 8px;
  text-align: left;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
    #0a1118;
}

.ti-tool-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(110, 210, 255, .22);
  background: rgba(32, 231, 255, .07);
  color: #20e7ff;
  font-size: 16px;
  line-height: 1;
}

.ti-tool-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ti-tool-copy strong,
.ti-tool-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
}

.ti-tool-copy strong {
  color: #eaf8ff;
  font-size: 13px;
  font-weight: 1000;
}

.ti-tool-copy em {
  color: rgba(157, 232, 255, .60);
  font-size: 10px;
  font-weight: 900;
}

.ti-left-tools button.ti-tool-btn.active {
  background:
    linear-gradient(180deg, rgba(32, 231, 255, .16), rgba(32, 231, 255, .035)),
    #0a1118;
}

.ti-left-tools button.ti-tool-btn.active .ti-tool-icon {
  border-color: rgba(32, 231, 255, .58);
  background: rgba(32, 231, 255, .14);
  box-shadow: 0 0 14px rgba(32, 231, 255, .22);
}

.ti-left-tools button.ti-tool-btn.active .ti-tool-copy strong {
  color: #20e7ff;
}

button {
  border: 1px solid rgba(110, 210, 255, .35);
  background: #0a1118;
  color: #eaf8ff;
  border-radius: 12px;
  min-height: 40px;
  font-weight: 800;
  cursor: pointer;
}

button.active {
  border-color: #20e7ff;
  color: #20e7ff;
  box-shadow: 0 0 12px rgba(32, 231, 255, .28);
}

button:disabled,
button.disabled {
  opacity: .36;
  cursor: not-allowed;
  border-color: rgba(255,255,255,.12);
  color: rgba(234,248,255,.48);
  box-shadow: none;
}

.ti-left-tools button.ti-tool-hidden {
  display: none;
}

.ti-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(110, 210, 255, .16), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(32, 231, 255, .08), transparent 42%),
    linear-gradient(180deg, #111b25 0%, #0d151e 48%, #091018 100%);
}

.ti-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035), transparent 18%, transparent 82%, rgba(255,255,255,.03)),
    radial-gradient(circle at 50% 4%, rgba(255,255,255,.08), transparent 34%);
  opacity: .9;
}

.ti-selected-vehicle-row {
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 36px);
  padding: 7px;
  border: 1px solid rgba(110, 210, 255, .22);
  background: rgba(3, 7, 12, .78);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.28), 0 0 18px rgba(32,231,255,.08);
  backdrop-filter: blur(8px);
}

.ti-selected-vehicle-change {
  min-width: 76px;
  min-height: 42px;
  padding: 0 12px;
  font-size: 12px;
  border-radius: 12px;
  color: #20e7ff;
  border-color: rgba(32, 231, 255, .34);
}

.ti-selected-vehicle-card {
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 10px 2px 4px;
}

.ti-selected-vehicle-thumb {
  width: 88px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(110, 210, 255, .20);
  background: rgba(255,255,255,.045);
  box-shadow: 0 0 12px rgba(32, 231, 255, .10);
  flex: 0 0 auto;
}

.ti-selected-vehicle-thumb.is-missing {
  display: none;
}

.ti-selected-vehicle-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ti-selected-vehicle-kicker {
  color: rgba(157, 232, 255, .68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .9px;
  line-height: 1;
  text-transform: uppercase;
}

.ti-selected-vehicle-label {
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #eaf8ff;
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
  max-width: min(380px, 42vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ti-vehicle-picker {
  display: none;
  position: absolute;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: min(640px, calc(100% - 54px));
  max-height: min(620px, calc(100% - 118px));
  overflow: hidden;
  border: 1px solid rgba(65, 210, 255, .46);
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 231, 255, .13), transparent 42%),
    linear-gradient(180deg, rgba(10, 22, 33, .98), rgba(3, 7, 12, .98));
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.055),
    0 0 0 1px rgba(32, 231, 255, .11),
    0 24px 54px rgba(0,0,0,.62),
    0 0 32px rgba(32,231,255,.18);
  backdrop-filter: blur(14px);
}

body.ti-picker-open .ti-vehicle-picker {
  display: flex;
  flex-direction: column;
}

.ti-picker-head {
  min-height: 60px;
  padding: 12px;
  display: grid;
  grid-template-columns: 96px 1fr 96px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(65, 210, 255, .24);
  background: rgba(255,255,255,.025);
}

.ti-picker-head button {
  min-height: 38px;
  border-radius: 13px;
}

.ti-picker-title {
  text-align: center;
  color: #20e7ff;
  font-size: 19px;
  font-weight: 1000;
  letter-spacing: .2px;
  text-shadow: 0 0 18px rgba(32, 231, 255, .18);
}

.ti-picker-subtitle {
  padding: 11px 18px 0;
  text-align: center;
  color: rgba(157, 232, 255, .82);
  font-size: 13px;
  font-weight: 900;
}

.ti-picker-breadcrumb {
  margin: 10px 14px 0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(234,248,255,.48);
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(110, 210, 255, .13);
  background: rgba(5, 8, 13, .45);
  border-radius: 14px;
}

.ti-picker-crumb {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(110, 210, 255, .16);
  background: rgba(5, 8, 13, .72);
  border-radius: 999px;
}

.ti-picker-crumb.filled {
  color: #eaf8ff;
  border-color: rgba(110, 210, 255, .28);
}

.ti-picker-crumb.active {
  color: #20e7ff;
  border-color: rgba(32, 231, 255, .62);
  box-shadow: 0 0 10px rgba(32, 231, 255, .18);
}

.ti-picker-crumb-sep {
  color: rgba(157, 232, 255, .48);
}

.ti-picker-search-wrap {
  position: relative;
  padding: 12px 14px 0;
}

.ti-picker-search-wrap::before {
  content: '⌕';
  position: absolute;
  left: 29px;
  top: 23px;
  color: rgba(157, 232, 255, .62);
  font-size: 18px;
  font-weight: 1000;
  pointer-events: none;
}

.ti-picker-search {
  width: 100%;
  min-height: 46px;
  padding: 0 78px 0 42px;
  border: 1px solid rgba(110, 210, 255, .28);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(5, 8, 13, .92);
  color: #eaf8ff;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 900;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.ti-picker-search:focus {
  border-color: #20e7ff;
  box-shadow: 0 0 12px rgba(32, 231, 255, .22);
}

.ti-picker-search::placeholder {
  color: rgba(234,248,255,.42);
}

.ti-picker-search-clear {
  display: none;
  position: absolute;
  right: 23px;
  top: 18px;
  min-width: 58px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 11px;
  border-color: rgba(32, 231, 255, .35);
  background: rgba(32, 231, 255, .10);
  color: #20e7ff;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .45px;
  text-transform: uppercase;
  box-shadow: none;
}

.ti-picker-search-clear.is-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ti-picker-search-clear:hover {
  border-color: rgba(32, 231, 255, .72);
  background: rgba(32, 231, 255, .16);
}

.ti-picker-list {
  padding: 14px;
  max-height: none;
  min-height: 0;
  overflow: auto;
  display: grid;
  gap: 10px;
  flex: 1;
}

.ti-picker-list button {
  min-height: 50px;
  text-align: left;
  padding: 0 16px;
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
    rgba(10, 17, 24, .98);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.028);
}

.ti-picker-list button:not(.ti-picker-vehicle-row) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ti-picker-list button:not(.ti-picker-vehicle-row)::after {
  content: '›';
  color: rgba(157, 232, 255, .52);
  font-size: 22px;
  line-height: 1;
}

.ti-picker-list button:hover {
  border-color: rgba(32, 231, 255, .54);
  background:
    linear-gradient(180deg, rgba(32, 231, 255, .095), rgba(255,255,255,.012)),
    rgba(10, 17, 24, .98);
}

.ti-picker-list button.active {
  text-align: left;
  border-color: rgba(32, 231, 255, .78);
  background:
    linear-gradient(180deg, rgba(32, 231, 255, .18), rgba(32, 231, 255, .035)),
    rgba(10, 17, 24, .98);
  box-shadow: 0 0 18px rgba(32, 231, 255, .22), inset 0 1px 0 rgba(255,255,255,.05);
}

.ti-picker-list button.ti-picker-vehicle-row {
  min-height: 86px;
  display: grid;
  grid-template-columns: 108px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 10px 12px;
}

.ti-picker-thumb {
  width: 104px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(110, 210, 255, .22);
  background: rgba(255,255,255,.06);
}

.ti-picker-thumb.is-missing,
.ti-picker-thumb-empty {
  display: none;
}

.ti-picker-vehicle-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.ti-picker-vehicle-copy strong,
.ti-picker-vehicle-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ti-picker-vehicle-copy strong {
  color: #eaf8ff;
  font-size: 14px;
  font-style: normal;
}

.ti-picker-vehicle-copy em {
  color: rgba(157, 232, 255, .72);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.ti-picker-current-badge {
  justify-self: end;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(32, 231, 255, .42);
  border-radius: 999px;
  background: rgba(32, 231, 255, .10);
  color: #20e7ff;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.ti-picker-search-results-label {
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 4px;
  color: rgba(157, 232, 255, .76);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.ti-picker-empty {
  padding: 16px;
  text-align: center;
  color: rgba(234,248,255,.65);
  font-weight: 800;
}

.ti-picker-empty-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed rgba(110, 210, 255, .32);
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(32,231,255,.10), transparent 58%),
    rgba(5, 8, 13, .56);
  box-shadow: inset 0 0 22px rgba(32, 231, 255, .06);
}

.ti-picker-empty-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32, 231, 255, .35);
  border-radius: 999px;
  background: rgba(32, 231, 255, .08);
  color: #20e7ff;
  font-size: 24px;
  line-height: 1;
}

.ti-picker-empty-card strong {
  color: #eaf8ff;
  font-size: 15px;
  font-weight: 1000;
}

.ti-picker-empty-query {
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(32, 231, 255, .08);
  color: #9de8ff;
  font-size: 12px;
  font-weight: 1000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ti-picker-empty-card span {
  color: rgba(234,248,255,.62);
  font-size: 12px;
  font-weight: 800;
}

.ti-angle-row {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.ti-angle-card {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(110, 210, 255, .24);
  background: rgba(5, 8, 13, .74);
  border-radius: 18px;
  box-shadow:
    0 10px 28px rgba(0,0,0,.34),
    0 0 16px rgba(32, 231, 255, .1);
  backdrop-filter: blur(8px);
}

.ti-angle-kicker {
  text-align: center;
  color: rgba(157, 232, 255, .78);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ti-angle-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ti-angle-row button {
  min-width: 96px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 11px;
  font-size: 12px;
  background: rgba(10, 17, 24, .92);
}

.ti-angle-row button.active {
  background: rgba(32, 231, 255, .12);
  transform: translateY(-1px);
}

.ti-exit-interior-angle {
  display: none;
  min-width: 148px;
  color: #20e7ff;
  border-color: rgba(32, 231, 255, .55);
  box-shadow: 0 0 12px rgba(32, 231, 255, .22);
}

body.ti-interior-mode .ti-angle-card {
  border-color: rgba(32, 231, 255, .38);
}

body.ti-interior-mode .ti-angle-row [data-angle] {
  display: none;
}

body.ti-interior-mode .ti-exit-interior-angle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ti-car-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.ti-car-frame::before {
  content: '';
  position: absolute;
  top: 88px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(174, 226, 255, .26);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015) 34%, rgba(0,0,0,.045)),
    radial-gradient(ellipse at 50% 12%, rgba(255,255,255,.10), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 0 0 1px rgba(32, 231, 255, .05),
    0 0 22px rgba(32, 231, 255, .10);
}


#carImage,
.ti-dynamic-mask {
  position: absolute;
  z-index: 2;
  max-width: 94vw;
  max-height: calc(100vh - 268px);
  object-fit: contain;
}

.ti-dynamic-mask {
  mix-blend-mode: multiply;
  pointer-events: none;
}

.ti-bottom-wrap {
  background: #05080d;
  border-top: 1px solid rgba(65, 210, 255, .35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ti-interior-view-row,
.ti-zone-row,
.ti-bottom-bar,
.ti-tint-summary-row,
.ti-paint-row,
.ti-scenes-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 14px;
  flex-wrap: wrap;
}

.ti-interior-view-row {
  border-bottom: 1px solid rgba(65, 210, 255, .16);
}

.ti-zone-row {
  border-bottom: 1px solid rgba(65, 210, 255, .18);
}

.ti-interior-view-row .ti-turn-btn {
  min-width: 118px;
  min-height: 36px;
  padding-left: 10px;
  padding-right: 10px;
}

.ti-interior-view-label {
  min-width: 170px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(110, 210, 255, .35);
  background: #0a1118;
  color: #20e7ff;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 0 12px rgba(32, 231, 255, .18);
  padding: 0 14px;
}

.ti-zone-row button {
  min-width: 138px;
  min-height: 36px;
  font-size: 13px;
}

.ti-zone-row button span {
  display: inline-block;
  margin-left: 5px;
  color: #20e7ff;
}

.ti-zone-row .ti-clear-btn {
  min-width: 150px;
  color: #ffd6d6;
  border-color: rgba(255, 115, 115, .38);
}

.ti-bottom-bar button {
  min-width: 58px;
  min-height: 36px;
}

body:not(.ti-interior-mode) .ti-interior-view-row {
  display: none;
}

body:not(.ti-interior-mode) .ti-eyebrow-zone {
  display: none;
}

@media (max-width: 1200px) {
  .ti-app {
    grid-template-columns: 132px 1fr;
    grid-template-rows: 1fr 220px;
  }

  .ti-left-tools {
    padding: 12px 9px;
    gap: 8px;
  }

  .ti-left-tools-title {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .ti-left-tools button.ti-tool-btn {
    min-height: 54px;
    grid-template-columns: 28px 1fr;
    gap: 6px;
    padding: 7px 7px;
    border-radius: 14px;
  }

  .ti-tool-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 14px;
  }

  .ti-tool-copy strong {
    font-size: 12px;
  }

  .ti-tool-copy em {
    display: none;
  }

  .ti-selected-vehicle-row {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
  }

  .ti-selected-vehicle-change {
    min-width: 68px;
  }

  .ti-selected-vehicle-label {
    font-size: 12px;
    max-width: calc(100vw - 245px);
  }

  .ti-selected-vehicle-thumb {
    width: 72px;
    height: 36px;
  }

  .ti-vehicle-picker {
    top: 92px;
    width: min(640px, calc(100% - 30px));
    max-height: min(620px, calc(100% - 112px));
  }

  .ti-angle-row {
    top: 56px;
    width: min(90vw, 470px);
  }

  .ti-angle-card {
    width: 100%;
  }

  .ti-angle-buttons {
    flex-wrap: wrap;
  }

  .ti-angle-row button {
    min-width: 92px;
  }

  .ti-zone-row button {
    min-width: 112px;
    font-size: 12px;
  }

  .ti-interior-view-row .ti-turn-btn {
    min-width: 104px;
  }

  .ti-interior-view-label {
    min-width: 132px;
    font-size: 13px;
  }

  .ti-bottom-bar button {
    min-width: 52px;
  }

  .ti-scenes-row button {
    min-width: 96px;
    font-size: 12px;
  }

  .ti-picker-list button.ti-picker-vehicle-row {
    grid-template-columns: 84px 1fr;
  }

  .ti-picker-current-badge {
    display: none;
  }

  .ti-picker-thumb {
    width: 80px;
    height: 48px;
  }


  .ti-paint-thumb {
    width: 68px;
    height: 30px;
  }

  .ti-car-frame::before {
    top: 108px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-radius: 22px;
  }


  #carImage,
  .ti-dynamic-mask {
    max-height: calc(100vh - 304px);
  }
}


.ti-paint-row {
  border-top: 1px solid rgba(65, 210, 255, .18);
  display: none;
}

.ti-paint-row button.ti-paint-slot-btn {
  min-width: 96px;
  min-height: 36px;
  font-size: 13px;
  white-space: nowrap;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 7px 10px;
}

.ti-paint-thumb {
  width: 82px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(110, 210, 255, .2);
  background: rgba(255,255,255,.05);
}

.ti-paint-thumb.is-missing,
.ti-paint-thumb-empty {
  display: none;
}

.ti-paint-slot-label {
  display: none;
}

.ti-scenes-row {
  border-top: 1px solid rgba(65, 210, 255, .18);
  display: none;
}

.ti-scenes-row button {
  min-width: 118px;
  min-height: 42px;
  font-size: 13px;
  white-space: nowrap;
}

body.ti-paint-mode .ti-paint-row {
  display: flex;
}

body.ti-scenes-mode .ti-scenes-row {
  display: flex;
}

body.ti-paint-mode .ti-zone-row,
body.ti-paint-mode .ti-bottom-bar,
body.ti-paint-mode .ti-tint-summary-row,
body.ti-paint-mode .ti-interior-view-row,
body.ti-scenes-mode .ti-zone-row,
body.ti-scenes-mode .ti-bottom-bar,
body.ti-scenes-mode .ti-tint-summary-row,
body.ti-scenes-mode .ti-interior-view-row,
body.ti-scenes-mode .ti-paint-row {
  display: none;
}


/* v26 bottom tray polish */
.ti-bottom-wrap {
  padding: 8px 12px 10px;
  gap: 7px;
  background:
    linear-gradient(180deg, rgba(8, 18, 27, .96), #05080d 60%),
    #05080d;
  box-shadow: inset 0 1px 0 rgba(110, 210, 255, .12);
}

.ti-interior-view-row,
.ti-zone-row,
.ti-bottom-bar,
.ti-tint-summary-row,
.ti-paint-row,
.ti-scenes-row {
  width: min(1180px, calc(100% - 10px));
  margin: 0 auto;
  padding: 7px 10px;
  gap: 8px;
  border: 1px solid rgba(110, 210, 255, .16);
  background: rgba(3, 7, 12, .52);
  border-radius: 17px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.ti-tray-kicker {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(110, 210, 255, .14);
  background: rgba(255,255,255,.035);
  color: rgba(157, 232, 255, .76);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .9px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ti-zone-row button,
.ti-bottom-bar button,
.ti-scenes-row button,
.ti-interior-view-row .ti-turn-btn,
.ti-interior-view-label {
  border-radius: 999px;
  background: rgba(10, 17, 24, .92);
}

.ti-zone-row button {
  min-height: 34px;
  padding: 0 14px;
}



.ti-zone-row .ti-clear-btn {
  min-width: 118px;
  color: #ffd6d6;
  border-color: rgba(255, 115, 115, .38);
}

.ti-bottom-bar button {
  min-width: 54px;
  min-height: 34px;
  font-size: 12px;
  padding: 0 10px;
}

.ti-bottom-bar button.active,
.ti-zone-row button.active,
.ti-scenes-row button.active {
  background: rgba(32, 231, 255, .12);
}

.ti-tint-summary-row {
  border-top: 1px solid rgba(65, 210, 255, .12);
}

.ti-tint-summary-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(110, 210, 255, .16);
  background: rgba(10, 17, 24, .78);
  color: rgba(234,248,255,.86);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.ti-tint-summary-chip.active {
  border-color: rgba(32, 231, 255, .5);
  color: #20e7ff;
  background: rgba(32, 231, 255, .10);
}

.ti-tint-summary-chip.is-clear {
  color: rgba(234,248,255,.62);
}

body:not(.ti-interior-mode) .ti-eyebrow-summary {
  display: none;
}

.ti-paint-row button.ti-paint-slot-btn {
  min-width: 92px;
  min-height: 54px;
  padding: 7px 9px;
  border-radius: 15px;
  background: rgba(10, 17, 24, .92);
}

.ti-paint-row button.ti-paint-slot-btn.active {
  background: rgba(32, 231, 255, .10);
}

.ti-paint-thumb {
  width: 80px;
  height: 36px;
  border-radius: 10px;
}

.ti-interior-view-label {
  min-height: 34px;
  box-shadow: 0 0 12px rgba(32, 231, 255, .14);
}

@media (max-width: 1200px) {
  .ti-bottom-wrap {
    padding-left: 8px;
    padding-right: 8px;
  }

  .ti-interior-view-row,
  .ti-zone-row,
  .ti-bottom-bar,
  .ti-tint-summary-row,
  .ti-paint-row,
  .ti-scenes-row {
    width: 100%;
    padding: 6px 8px;
    gap: 6px;
  }

  .ti-tray-kicker {
    min-height: 28px;
    font-size: 9px;
    padding: 0 9px;
  }

  .ti-zone-row button,
  .ti-bottom-bar button {
    min-height: 32px;
  }
  .ti-tint-summary-chip {
    min-height: 28px;
    font-size: 11px;
    padding: 0 10px;
  }

}

@media (max-width: 1200px) { .ti-header { gap: 10px; padding: 0 12px; } .ti-logo { font-size: 28px; } .ti-header-status-wrap { min-width: 0; max-width: 58vw; } }


/* v32 hidden/admin vehicle data checker */
.ti-debug-checker {
  display: none;
  position: fixed;
  top: 92px;
  right: 18px;
  z-index: 90;
  width: min(470px, calc(100vw - 36px));
  max-height: calc(100vh - 128px);
  overflow: hidden;
  border: 1px solid rgba(65, 210, 255, .42);
  background: rgba(3, 7, 12, .96);
  color: #eaf8ff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.58), 0 0 24px rgba(32,231,255,.14);
}

body.ti-debug-checker-on .ti-debug-checker {
  display: block;
}

.ti-debug-checker-head {
  min-height: 58px;
  padding: 12px 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(65, 210, 255, .2);
}

.ti-debug-checker-kicker {
  color: rgba(157, 232, 255, .72);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ti-debug-checker-title {
  color: #20e7ff;
  font-size: 18px;
  font-weight: 1000;
}

.ti-debug-close {
  min-width: 74px;
  min-height: 34px;
  border-radius: 999px;
  font-size: 12px;
}

.ti-debug-checker-note {
  padding: 10px 12px;
  color: rgba(234,248,255,.72);
  font-size: 12px;
  line-height: 1.35;
  border-bottom: 1px solid rgba(65, 210, 255, .14);
}

.ti-debug-checker-note strong {
  color: #20e7ff;
}

.ti-debug-checker-body {
  max-height: calc(100vh - 250px);
  overflow: auto;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.ti-debug-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid rgba(255, 190, 80, .28);
  background: rgba(255, 190, 80, .08);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
}

.ti-debug-summary.pass {
  border-color: rgba(55, 255, 155, .28);
  background: rgba(55, 255, 155, .08);
}

.ti-debug-summary strong {
  color: #20e7ff;
}

.ti-debug-item {
  padding: 10px;
  border: 1px solid rgba(110, 210, 255, .14);
  background: rgba(255,255,255,.035);
  border-radius: 14px;
  font-size: 12px;
}

.ti-debug-item.error {
  border-color: rgba(255, 90, 90, .34);
  background: rgba(255, 90, 90, .08);
}

.ti-debug-item.warning {
  border-color: rgba(255, 190, 80, .34);
  background: rgba(255, 190, 80, .08);
}

.ti-debug-item.info {
  border-color: rgba(65, 210, 255, .24);
}

.ti-debug-level {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(234,248,255,.72);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.ti-debug-item strong,
.ti-debug-item p,
.ti-debug-item em {
  display: block;
}

.ti-debug-item strong {
  color: #eaf8ff;
  margin-bottom: 4px;
}

.ti-debug-item p {
  margin: 0;
  color: rgba(234,248,255,.82);
  line-height: 1.35;
}

.ti-debug-item em {
  margin-top: 5px;
  color: rgba(157,232,255,.68);
  font-style: normal;
  line-height: 1.3;
}


/* v38 Interior tray polish */
body.ti-interior-mode .ti-interior-view-row {
  min-height: 68px;
  border-color: rgba(32, 231, 255, .28);
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 231, 255, .10), transparent 58%),
    rgba(3, 7, 12, .62);
  box-shadow:
    0 12px 28px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.ti-interior-view-row .ti-turn-btn {
  min-width: 166px;
  min-height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
}

.ti-turn-arrow {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(110, 210, 255, .18);
  background: rgba(32, 231, 255, .08);
  color: #20e7ff;
  line-height: 1;
  flex: 0 0 auto;
}

.ti-turn-copy {
  display: grid;
  gap: 2px;
  text-align: left;
  line-height: 1.05;
}

.ti-turn-copy b {
  color: #eaf8ff;
  font-size: 12px;
  font-weight: 1000;
}

.ti-turn-copy small {
  color: rgba(157, 232, 255, .62);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .35px;
}

.ti-interior-view-card {
  min-width: 184px;
  min-height: 50px;
  padding: 7px 18px;
  display: inline-grid;
  place-items: center;
  gap: 2px;
  border: 1px solid rgba(32, 231, 255, .34);
  background:
    linear-gradient(180deg, rgba(32, 231, 255, .12), rgba(10, 17, 24, .92)),
    #0a1118;
  border-radius: 18px;
  box-shadow: 0 0 18px rgba(32, 231, 255, .14);
}

.ti-interior-current-label {
  color: rgba(157, 232, 255, .70);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .85px;
  line-height: 1;
  text-transform: uppercase;
}

.ti-interior-view-card .ti-interior-view-label {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #20e7ff;
  border-radius: 0;
  box-shadow: none;
  font-size: 17px;
  line-height: 1.15;
}

@media (max-width: 1200px) {
  .ti-interior-view-row .ti-turn-btn {
    min-width: 128px;
    min-height: 44px;
    padding: 0 10px;
  }

  .ti-turn-arrow {
    width: 26px;
    height: 26px;
  }

  .ti-turn-copy small {
    display: none;
  }

  .ti-interior-view-card {
    min-width: 138px;
    min-height: 44px;
    padding: 6px 12px;
  }

  .ti-interior-view-card .ti-interior-view-label {
    font-size: 14px;
  }
}


/* v39 Interior stage fit fix */
body.ti-interior-mode .ti-car-frame {
  padding: 92px 18px 18px;
}

body.ti-interior-mode .ti-car-frame::before {
  top: 86px;
  right: 14px;
  bottom: 10px;
  left: 14px;
}

body.ti-interior-mode #carImage,
body.ti-interior-mode .ti-dynamic-mask {
  max-width: calc(100% - 36px);
  max-height: calc(100% - 112px);
}

@media (max-width: 1200px) {
  body.ti-interior-mode .ti-car-frame {
    padding: 88px 10px 10px;
  }

  body.ti-interior-mode #carImage,
  body.ti-interior-mode .ti-dynamic-mask {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 104px);
  }
}


/* v40 remove Current Tint summary row + reclaim tray space */
.ti-tint-summary-row {
  display: none !important;
}

body:not(.ti-interior-mode) .ti-app {
  grid-template-rows: 1fr 150px;
}

body.ti-interior-mode .ti-app {
  grid-template-rows: 1fr 184px;
}

@media (max-width: 1200px) {
  body:not(.ti-interior-mode) .ti-app {
    grid-template-rows: 1fr 176px;
  }

  body.ti-interior-mode .ti-app {
    grid-template-rows: 1fr 220px;
  }
}


/* v41 full-screen hover-panel layout test */
.ti-app {
  position: relative;
  display: block;
  height: calc(100vh - 74px);
  overflow: hidden;
  background: #05080d;
}

.ti-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ti-stage::before {
  opacity: .72;
}

.ti-left-tools {
  position: absolute;
  z-index: 20;
  top: 14px;
  left: 12px;
  bottom: 14px;
  width: 142px;
  padding: 12px 10px;
  border: 1px solid rgba(65, 210, 255, .24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 231, 255, .12), transparent 38%),
    rgba(3, 7, 12, .78);
  box-shadow: 0 20px 44px rgba(0,0,0,.38), 0 0 18px rgba(32,231,255,.08);
  backdrop-filter: blur(10px);
}

.ti-selected-vehicle-row {
  top: 16px;
  left: 172px;
  z-index: 22;
  max-width: min(520px, calc(100vw - 720px));
}

.ti-angle-row {
  top: 18px;
  z-index: 21;
}

.ti-car-frame {
  inset: 0;
  padding: 92px 28px 160px 178px;
}

.ti-car-frame::before {
  top: 92px;
  right: 18px;
  bottom: 148px;
  left: 166px;
  border-color: rgba(174, 226, 255, .14);
  border-radius: 24px;
  background: rgba(255,255,255,.018);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 0 18px rgba(32, 231, 255, .06);
}

#carImage,
.ti-dynamic-mask {
  max-width: calc(100vw - 240px);
  max-height: calc(100vh - 250px);
}

.ti-bottom-wrap {
  position: absolute;
  z-index: 22;
  left: 172px;
  right: 18px;
  bottom: 14px;
  width: auto;
  max-height: 190px;
  overflow: visible;
  padding: 8px 10px;
  gap: 7px;
  border: 1px solid rgba(65, 210, 255, .22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(32,231,255,.08), transparent 58%),
    rgba(3, 7, 12, .78);
  box-shadow: 0 20px 46px rgba(0,0,0,.42), 0 0 22px rgba(32,231,255,.08);
  backdrop-filter: blur(10px);
}

.ti-interior-view-row,
.ti-zone-row,
.ti-bottom-bar,
.ti-paint-row,
.ti-scenes-row {
  width: 100%;
  max-width: none;
}

body.ti-paint-mode .ti-bottom-wrap,
body.ti-scenes-mode .ti-bottom-wrap {
  max-height: 145px;
}

body.ti-interior-mode .ti-bottom-wrap {
  max-height: 214px;
}

body.ti-interior-mode .ti-car-frame {
  padding: 92px 28px 198px 178px;
}

body.ti-interior-mode .ti-car-frame::before {
  top: 92px;
  right: 18px;
  bottom: 190px;
  left: 166px;
}

body.ti-interior-mode #carImage,
body.ti-interior-mode .ti-dynamic-mask {
  max-width: calc(100vw - 240px);
  max-height: calc(100vh - 312px);
}

.ti-vehicle-picker {
  z-index: 40;
}

.ti-debug-checker {
  z-index: 60;
}

@media (max-width: 1200px) {
  .ti-left-tools {
    width: 118px;
    top: 10px;
    left: 8px;
    bottom: 10px;
    padding: 10px 8px;
  }

  .ti-selected-vehicle-row {
    left: 136px;
    max-width: calc(100vw - 150px);
  }

  .ti-angle-row {
    top: 76px;
    left: calc(50% + 54px);
    width: min(66vw, 430px);
  }

  .ti-car-frame {
    padding: 132px 10px 190px 128px;
  }

  .ti-car-frame::before {
    top: 128px;
    right: 8px;
    bottom: 184px;
    left: 124px;
  }

  #carImage,
  .ti-dynamic-mask {
    max-width: calc(100vw - 150px);
    max-height: calc(100vh - 310px);
  }

  .ti-bottom-wrap {
    left: 128px;
    right: 8px;
    bottom: 10px;
    max-height: 210px;
  }

  body.ti-interior-mode .ti-car-frame {
    padding: 132px 10px 222px 128px;
  }

  body.ti-interior-mode .ti-car-frame::before {
    top: 128px;
    right: 8px;
    bottom: 214px;
    left: 124px;
  }

  body.ti-interior-mode #carImage,
  body.ti-interior-mode .ti-dynamic-mask {
    max-width: calc(100vw - 150px);
    max-height: calc(100vh - 360px);
  }
}


/* v42 hover layout spacing pass */
.ti-stage {
  background:
    radial-gradient(circle at 50% 18%, rgba(70, 170, 220, .18), transparent 35%),
    radial-gradient(circle at 50% 82%, rgba(32, 231, 255, .08), transparent 46%),
    linear-gradient(180deg, #10202d 0%, #07111a 58%, #05080d 100%);
}

.ti-stage::before {
  opacity: .38;
}

.ti-left-tools {
  top: 86px;
  bottom: 142px;
  width: 142px;
  border-radius: 22px;
}

.ti-selected-vehicle-row {
  top: 18px;
  left: 170px;
  max-width: min(520px, calc(100vw - 760px));
}

.ti-angle-row {
  top: 18px;
  left: auto;
  right: 18px;
  transform: none;
  width: auto;
}

.ti-angle-card {
  min-width: 430px;
  padding: 10px 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.018)),
    rgba(3, 7, 12, .78);
}

.ti-angle-buttons {
  gap: 8px;
}

.ti-angle-row button {
  min-width: 92px;
  min-height: 36px;
}

.ti-car-frame {
  padding: 74px 20px 142px 158px;
}

.ti-car-frame::before {
  display: none;
}

#carImage,
.ti-dynamic-mask {
  max-width: calc(100vw - 190px);
  max-height: calc(100vh - 196px);
}

.ti-bottom-wrap {
  left: 170px;
  right: 18px;
  bottom: 14px;
  max-height: 136px;
  padding: 10px 14px;
  gap: 8px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(3, 7, 12, .82);
}

.ti-zone-row,
.ti-bottom-bar,
.ti-paint-row,
.ti-scenes-row {
  border-color: rgba(110, 210, 255, .12);
  background: rgba(3, 7, 12, .38);
  box-shadow: none;
}

.ti-zone-row,
.ti-bottom-bar {
  min-height: 42px;
  padding: 6px 8px;
}

.ti-zone-row button,
.ti-bottom-bar button {
  min-height: 32px;
}

body.ti-paint-mode .ti-bottom-wrap,
body.ti-scenes-mode .ti-bottom-wrap {
  max-height: 120px;
}

body.ti-interior-mode .ti-left-tools {
  bottom: 196px;
}

body.ti-interior-mode .ti-bottom-wrap {
  max-height: 208px;
}

body.ti-interior-mode .ti-car-frame {
  padding: 78px 20px 216px 158px;
}

body.ti-interior-mode #carImage,
body.ti-interior-mode .ti-dynamic-mask {
  max-width: calc(100vw - 190px);
  max-height: calc(100vh - 318px);
}

@media (max-width: 1200px) {
  .ti-left-tools {
    top: 100px;
    bottom: 164px;
    width: 118px;
  }

  .ti-selected-vehicle-row {
    top: 12px;
    left: 136px;
    max-width: calc(100vw - 150px);
  }

  .ti-angle-row {
    top: 72px;
    right: 8px;
    left: 136px;
    transform: none;
    width: auto;
  }

  .ti-angle-card {
    min-width: 0;
    width: 100%;
  }

  .ti-angle-buttons {
    flex-wrap: wrap;
  }

  .ti-car-frame {
    padding: 124px 8px 178px 128px;
  }

  #carImage,
  .ti-dynamic-mask {
    max-width: calc(100vw - 140px);
    max-height: calc(100vh - 300px);
  }

  .ti-bottom-wrap {
    left: 128px;
    right: 8px;
    bottom: 10px;
    max-height: 190px;
    padding: 8px;
  }

  body.ti-interior-mode .ti-left-tools {
    bottom: 210px;
  }

  body.ti-interior-mode .ti-car-frame {
    padding: 124px 8px 226px 128px;
  }

  body.ti-interior-mode #carImage,
  body.ti-interior-mode .ti-dynamic-mask {
    max-width: calc(100vw - 140px);
    max-height: calc(100vh - 360px);
  }
}


/* v43 true full-canvas image layout */
.ti-app {
  position: relative;
  display: block;
  height: calc(100vh - 74px);
  overflow: hidden;
}

.ti-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.ti-stage::before {
  opacity: .72;
}

.ti-left-tools {
  position: absolute;
  top: 92px;
  left: 18px;
  bottom: 148px;
  width: 154px;
  z-index: 9;
  padding: 14px 12px;
  border: 1px solid rgba(65, 210, 255, .24);
  border-radius: 22px;
  background: rgba(3, 7, 12, .80);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,.34), 0 0 18px rgba(32,231,255,.08);
}

.ti-selected-vehicle-row {
  top: 14px;
  left: 182px;
  max-width: min(540px, calc(100% - 620px));
}

.ti-angle-row {
  top: 14px;
  right: 22px;
  left: auto;
  transform: none;
  z-index: 8;
}

.ti-car-frame {
  position: absolute;
  inset: 0;
  padding: 86px 24px 156px 184px;
  display: grid;
  place-items: center;
}

.ti-car-frame::before {
  display: none;
}

#carImage,
.ti-dynamic-mask {
  z-index: 2;
  max-width: calc(100% - 8px);
  max-height: calc(100% - 8px);
  object-fit: contain;
}

.ti-bottom-wrap {
  position: absolute;
  left: 182px;
  right: 18px;
  bottom: 14px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ti-interior-view-row,
.ti-zone-row,
.ti-bottom-bar,
.ti-paint-row,
.ti-scenes-row {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  background: rgba(3, 7, 12, .84);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,.30), 0 0 16px rgba(32,231,255,.08);
}

.ti-paint-row,
.ti-scenes-row {
  justify-content: flex-start;
}

body.ti-paint-mode .ti-bottom-wrap,
body.ti-scenes-mode .ti-bottom-wrap {
  background: transparent;
}

body.ti-interior-mode .ti-left-tools {
  bottom: 174px;
}

body.ti-interior-mode .ti-car-frame {
  padding: 86px 24px 214px 184px;
}

body.ti-interior-mode #carImage,
body.ti-interior-mode .ti-dynamic-mask {
  max-width: calc(100% - 8px);
  max-height: calc(100% - 8px);
}

@media (max-width: 1200px) {
  .ti-left-tools {
    top: 84px;
    left: 10px;
    bottom: 144px;
    width: 132px;
    padding: 12px 10px;
  }

  .ti-selected-vehicle-row {
    top: 10px;
    left: 152px;
    max-width: min(420px, calc(100% - 390px));
  }

  .ti-angle-row {
    top: 10px;
    right: 10px;
  }

  .ti-angle-row button {
    min-width: 82px;
  }

  .ti-car-frame {
    padding: 84px 12px 148px 148px;
  }

  #carImage,
  .ti-dynamic-mask {
    max-width: calc(100% - 4px);
    max-height: calc(100% - 4px);
  }

  .ti-bottom-wrap {
    left: 152px;
    right: 10px;
    bottom: 10px;
  }

  body.ti-interior-mode .ti-left-tools {
    bottom: 168px;
  }

  body.ti-interior-mode .ti-car-frame {
    padding: 84px 12px 206px 148px;
  }
}


/* v44 centered large image with hover panels */
.ti-stage::before {
  opacity: .84;
}

.ti-left-tools {
  bottom: 152px;
}

.ti-selected-vehicle-row {
  left: 176px;
  max-width: min(560px, calc(100% - 620px));
}

.ti-angle-row {
  right: 20px;
}

.ti-car-frame {
  padding: 98px 30px 158px 176px;
}

.ti-car-frame::before {
  display: block;
  top: 92px;
  right: 18px;
  bottom: 132px;
  left: 176px;
  border: 1px solid rgba(174, 226, 255, .16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.005));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 18px rgba(32, 231, 255, .06);
}

#carImage,
.ti-dynamic-mask {
  max-width: min(1180px, calc(100vw - 430px));
  max-height: calc(100vh - 320px);
}

.ti-bottom-wrap {
  left: 176px;
  right: 18px;
  bottom: 14px;
}

.ti-interior-view-row,
.ti-zone-row,
.ti-bottom-bar,
.ti-paint-row,
.ti-scenes-row {
  max-width: 1280px;
}

body.ti-interior-mode .ti-left-tools {
  bottom: 178px;
}

body.ti-interior-mode .ti-car-frame {
  padding: 96px 30px 212px 176px;
}

body.ti-interior-mode .ti-car-frame::before {
  top: 92px;
  bottom: 186px;
  left: 176px;
  right: 18px;
}

body.ti-interior-mode #carImage,
body.ti-interior-mode .ti-dynamic-mask {
  max-width: min(1160px, calc(100vw - 420px));
  max-height: calc(100vh - 376px);
}

@media (max-width: 1200px) {
  .ti-left-tools {
    bottom: 146px;
  }

  .ti-selected-vehicle-row {
    left: 148px;
    max-width: min(430px, calc(100% - 390px));
  }

  .ti-car-frame {
    padding: 92px 12px 150px 148px;
  }

  .ti-car-frame::before {
    top: 88px;
    right: 10px;
    bottom: 126px;
    left: 148px;
  }

  #carImage,
  .ti-dynamic-mask {
    max-width: min(1000px, calc(100vw - 300px));
    max-height: calc(100vh - 300px);
  }

  .ti-bottom-wrap {
    left: 148px;
    right: 10px;
    bottom: 10px;
  }

  body.ti-interior-mode .ti-left-tools {
    bottom: 170px;
  }

  body.ti-interior-mode .ti-car-frame {
    padding: 92px 12px 204px 148px;
  }

  body.ti-interior-mode .ti-car-frame::before {
    top: 88px;
    bottom: 180px;
    left: 148px;
    right: 10px;
  }

  body.ti-interior-mode #carImage,
  body.ti-interior-mode .ti-dynamic-mask {
    max-width: min(980px, calc(100vw - 290px));
    max-height: calc(100vh - 352px);
  }
}


/* v49 DB asset safety keeps v48/v47 full-canvas styling */
.ti-app {
  position: relative;
  display: block;
  height: calc(100vh - 74px);
  overflow: hidden;
}

.ti-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #05080d;
}

.ti-stage::before {
  opacity: .18;
}

.ti-car-frame {
  position: absolute;
  inset: 0;
  padding: 0;
  display: block;
  overflow: hidden;
}

.ti-car-frame::before {
  display: none;
}

#carImage,
.ti-dynamic-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.ti-left-tools {
  position: absolute;
  top: 92px;
  left: 18px;
  bottom: 150px;
  width: 154px;
  z-index: 9;
  border: 1px solid rgba(65, 210, 255, .24);
  border-radius: 22px;
  background: rgba(3, 7, 12, .80);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,.34), 0 0 18px rgba(32,231,255,.08);
}

.ti-selected-vehicle-row {
  top: 14px;
  left: 182px;
  z-index: 9;
  max-width: min(560px, calc(100% - 620px));
}

.ti-angle-row {
  top: 14px;
  right: 22px;
  left: auto;
  transform: none;
  z-index: 9;
}

.ti-bottom-wrap {
  position: absolute;
  left: 182px;
  right: 18px;
  bottom: 14px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ti-interior-view-row,
.ti-zone-row,
.ti-bottom-bar,
.ti-paint-row,
.ti-scenes-row {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  background: rgba(3, 7, 12, .84);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,.30), 0 0 16px rgba(32,231,255,.08);
}

body.ti-interior-mode #carImage,
body.ti-interior-mode .ti-dynamic-mask {
  object-fit: cover;
  object-position: center center;
  background: rgba(5, 8, 13, .18);
}

body.ti-interior-mode .ti-stage::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,8,13,0) 0%, rgba(5,8,13,.28) 40%, rgba(5,8,13,.62) 100%);
  z-index: 3;
}

@media (max-width: 1200px) {
  .ti-left-tools {
    top: 84px;
    left: 10px;
    bottom: 144px;
    width: 132px;
  }

  .ti-selected-vehicle-row {
    top: 10px;
    left: 152px;
    max-width: min(420px, calc(100% - 390px));
  }

  .ti-angle-row {
    top: 10px;
    right: 10px;
  }

  .ti-bottom-wrap {
    left: 152px;
    right: 10px;
    bottom: 10px;
  }
}


/* v46 interior full-canvas cover */
body.ti-interior-mode .ti-selected-vehicle-row,
body.ti-interior-mode .ti-angle-row,
body.ti-interior-mode .ti-left-tools,
body.ti-interior-mode .ti-bottom-wrap {
  z-index: 10;
}


/* v47 true Interior hover-canvas correction */
body.ti-interior-mode .ti-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #05080d;
}

body.ti-interior-mode .ti-car-frame {
  position: absolute;
  inset: 0;
  padding: 0;
  display: block;
  overflow: hidden;
}

body.ti-interior-mode .ti-car-frame::before {
  display: none;
}

body.ti-interior-mode #carImage,
body.ti-interior-mode .ti-dynamic-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center center;
}

body.ti-interior-mode .ti-angle-row {
  top: 14px;
  right: 22px;
  left: auto;
  transform: none;
  z-index: 12;
}

body.ti-interior-mode .ti-angle-card {
  min-width: 270px;
  background: rgba(3, 7, 12, .78);
  backdrop-filter: blur(10px);
}

body.ti-interior-mode .ti-selected-vehicle-row,
body.ti-interior-mode .ti-left-tools,
body.ti-interior-mode .ti-bottom-wrap {
  z-index: 12;
}

body.ti-interior-mode .ti-stage::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 250px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,8,13,0), rgba(5,8,13,.36) 46%, rgba(5,8,13,.72));
  z-index: 3;
}

@media (max-width: 1200px) {
  body.ti-interior-mode .ti-angle-row {
    top: 10px;
    right: 10px;
  }

  body.ti-interior-mode .ti-angle-card {
    min-width: 220px;
  }
}


/* v49 DB staged missing-image safety */
#carImage.is-missing-main-image {
  opacity: 0;
}

.ti-image-missing-notice {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 44px));
  padding: 20px 22px;
  border: 1px solid rgba(255, 190, 80, .42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 190, 80, .12), transparent 58%),
    rgba(3, 7, 12, .88);
  color: #eaf8ff;
  text-align: center;
  box-shadow: 0 20px 54px rgba(0,0,0,.45), 0 0 22px rgba(255,190,80,.08);
  backdrop-filter: blur(10px);
}

body.ti-image-missing-on .ti-image-missing-notice {
  display: grid;
  gap: 8px;
}

.ti-image-missing-notice strong {
  color: #ffd28a;
  font-size: 18px;
  font-weight: 1000;
}

.ti-image-missing-notice span {
  color: rgba(234,248,255,.78);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.ti-image-missing-notice em {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(157,232,255,.68);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}


/* v52 obvious mask debug inspector */
.ti-mask-debug-panel {
  display: none;
  position: fixed;
  right: 18px;
  top: 132px;
  z-index: 96;
  width: min(560px, calc(100vw - 36px));
  max-height: min(520px, calc(100vh - 170px));
  overflow: hidden;
  border: 1px solid rgba(65, 210, 255, .48);
  background: rgba(3, 7, 12, .96);
  color: #eaf8ff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.58), 0 0 26px rgba(32,231,255,.18);
  backdrop-filter: blur(12px);
}

body.ti-mask-debug-on .ti-mask-debug-panel {
  display: block;
}

body.ti-debug-checker-on.ti-mask-debug-on .ti-mask-debug-panel {
  right: auto;
  left: 190px;
  top: 132px;
  width: min(500px, calc(100vw - 730px));
}

.ti-mask-debug-head {
  min-height: 58px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(65, 210, 255, .2);
}

.ti-mask-debug-kicker {
  color: rgba(157, 232, 255, .72);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ti-mask-debug-title {
  color: #20e7ff;
  font-size: 18px;
  font-weight: 1000;
}

.ti-mask-debug-close {
  min-width: 74px;
  min-height: 34px;
  border-radius: 999px;
  font-size: 12px;
}

.ti-mask-debug-note {
  padding: 10px 12px;
  color: rgba(234,248,255,.72);
  font-size: 12px;
  line-height: 1.35;
  border-bottom: 1px solid rgba(65, 210, 255, .14);
}

.ti-mask-debug-note strong { color: #20e7ff; }

.ti-mask-debug-body {
  max-height: calc(100vh - 260px);
  overflow: auto;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.ti-mask-debug-summary {
  padding: 10px;
  border: 1px solid rgba(110, 210, 255, .18);
  background: rgba(255,255,255,.035);
  border-radius: 14px;
  display: grid;
  gap: 4px;
}

.ti-mask-debug-summary strong { color: #eaf8ff; }
.ti-mask-debug-summary span { color: #20e7ff; font-weight: 1000; }
.ti-mask-debug-summary em { color: rgba(157,232,255,.68); font-style: normal; }

.ti-mask-debug-list {
  display: grid;
  gap: 8px;
}

.ti-mask-debug-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(110, 210, 255, .14);
  background: rgba(255,255,255,.025);
  border-radius: 13px;
}

.ti-mask-debug-row.active {
  border-color: rgba(32, 231, 255, .54);
  background: rgba(32, 231, 255, .08);
}

.ti-mask-debug-row.missing {
  border-color: rgba(255, 190, 80, .34);
  background: rgba(255, 190, 80, .06);
}

.ti-mask-debug-zone {
  color: #20e7ff;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ti-mask-debug-src {
  color: rgba(234,248,255,.82);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  .ti-mask-debug-panel,
  body.ti-debug-checker-on.ti-mask-debug-on .ti-mask-debug-panel {
    left: 10px;
    right: 10px;
    top: 108px;
    width: auto;
  }

  .ti-mask-debug-row {
    grid-template-columns: 86px 1fr;
  }
}


/* v53 forced mask debug visibility */
body.ti-mask-debug-requested .ti-mask-debug-panel,
body.ti-mask-debug-on .ti-mask-debug-panel {
  display: block !important;
}

.ti-mask-debug-panel {
  z-index: 9999 !important;
  top: 112px;
  right: 18px;
  width: min(520px, calc(100vw - 36px));
  border-color: rgba(255, 220, 110, .55);
  box-shadow: 0 24px 70px rgba(0,0,0,.68), 0 0 30px rgba(255,220,110,.16), 0 0 24px rgba(32,231,255,.18);
}

body.ti-debug-checker-on.ti-mask-debug-requested .ti-mask-debug-panel,
body.ti-debug-checker-on.ti-mask-debug-on .ti-mask-debug-panel {
  left: 190px;
  right: auto;
  top: 112px;
  width: min(500px, calc(100vw - 730px));
}

.ti-mask-debug-title::after {
  content: ' ON';
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 7px;
  border: 1px solid rgba(255,220,110,.45);
  border-radius: 999px;
  color: #ffd977;
  font-size: 9px;
  line-height: 1;
  vertical-align: middle;
}

@media (max-width: 1200px) {
  body.ti-debug-checker-on.ti-mask-debug-requested .ti-mask-debug-panel,
  body.ti-debug-checker-on.ti-mask-debug-on .ti-mask-debug-panel,
  .ti-mask-debug-panel {
    left: 10px !important;
    right: 10px !important;
    top: 104px !important;
    width: auto !important;
  }
}


/* v54 forced visible Mask Debug dock */
.ti-mask-debug-dock .ti-mask-debug-row {
  background: rgba(255,255,255,.035);
}

@media (max-width: 1200px) {
  .ti-mask-debug-dock {
    left: 10px !important;
    right: 10px !important;
    bottom: 150px !important;
    width: auto !important;
  }
}


/* v64 lightweight mask debug + override display */
body.ti-mask-debug-on .ti-mask-debug-panel {
  display: none;
}

.ti-mask-debug-row.overridden {
  border-color: rgba(255, 217, 119, .42);
  background: rgba(255, 217, 119, .08);
}

.ti-mask-debug-override {
  padding: 8px 10px;
  border: 1px solid rgba(255, 217, 119, .34);
  background: rgba(255, 217, 119, .08);
  color: #ffd977;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
}


/* v67 DB default + debug cleanup */
.ti-mask-debug-panel {
  display: none !important;
}

body.ti-mask-debug-requested .ti-mask-debug-panel,
body.ti-mask-debug-on .ti-mask-debug-panel,
body.ti-debug-checker-on.ti-mask-debug-requested .ti-mask-debug-panel,
body.ti-debug-checker-on.ti-mask-debug-on .ti-mask-debug-panel {
  display: none !important;
}

.ti-mask-debug-dock {
  z-index: 10000 !important;
}

/* v84 speed pass: keep the real vehicle preview high priority and stop hidden full-size thumbnails from stealing bandwidth. */
#carImage.is-loading-main-image {
  filter: saturate(.92) brightness(.96);
}

/* v84 thumbnail size cleanup */
.ti-selected-vehicle-thumb {
  width: 58px !important;
  height: 30px !important;
  border-radius: 8px !important;
}

.ti-picker-list button.ti-picker-vehicle-row {
  min-height: 62px !important;
  grid-template-columns: 74px 1fr auto !important;
  gap: 10px !important;
  padding: 8px 10px !important;
}

.ti-picker-thumb {
  width: 70px !important;
  height: 40px !important;
  border-radius: 9px !important;
}

.ti-paint-row button.ti-paint-slot-btn {
  min-width: 68px !important;
  min-height: 42px !important;
  padding: 6px 7px !important;
  border-radius: 12px !important;
}

.ti-paint-thumb {
  width: 56px !important;
  height: 26px !important;
  border-radius: 8px !important;
}

.ti-paint-thumb-empty {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: rgba(234,248,255,.76);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,255,.06);
}
