/* 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 210, 255, .16);
  background: rgba(5, 8, 13, .72);
  border-radius: 999px;
}

.ti-picker-crumb.filled {
  color: #eaf8ff;
  border-color: rgba(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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(111, 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, 111, .55);
  box-shadow: 0 24px 70px rgba(0,0,0,.68), 0 0 30px rgba(255,220,111,.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,111,.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);
}

/* v121 film brand / tint type selector */
.ti-film-brand-row,
.ti-film-type-row {
  width: 100%;
  max-width: 1320px;
  min-height: 42px;
  margin: 0 auto;
  padding: 6px 10px;
  display: none;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(65, 210, 255, .16);
  border-radius: 18px;
  background: rgba(3, 7, 12, .84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,.30), 0 0 16px rgba(32,231,255,.08);
}

body.ti-tint-mode .ti-film-brand-row,
body.ti-tint-mode .ti-film-type-row,
body.ti-interior-mode .ti-film-brand-row,
body.ti-interior-mode .ti-film-type-row {
  display: flex;
}

body.ti-paint-mode .ti-film-brand-row,
body.ti-paint-mode .ti-film-type-row,
body.ti-scenes-mode .ti-film-brand-row,
body.ti-scenes-mode .ti-film-type-row {
  display: none !important;
}

.ti-film-brand-row button,
.ti-film-type-row button {
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(111, 210, 255, .24);
  background: rgba(10, 17, 24, .94);
  color: #eaf8ff;
  font-size: 12px;
  font-weight: 1000;
  white-space: nowrap;
  cursor: pointer;
}

.ti-film-brand-row button.active,
.ti-film-type-row button.active {
  color: #20e7ff;
  border-color: rgba(32,231,255,.72);
  background: rgba(32,231,255,.12);
  box-shadow: 0 0 18px rgba(32,231,255,.18);
}

.ti-film-selected-chip {
  margin-left: auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: rgba(238,248,255,.76);
  font-size: 11px;
  font-weight: 1000;
  white-space: nowrap;
}

body.ti-tint-mode .ti-bottom-wrap,
body.ti-interior-mode .ti-bottom-wrap {
  gap: 7px;
}

@media (max-width: 760px) {
  .ti-film-selected-chip {
    display: none;
  }

  .ti-film-brand-row,
  .ti-film-type-row {
    padding: 6px 8px;
  }

  .ti-film-brand-row button,
  .ti-film-type-row button {
    padding: 0 11px;
    font-size: 11px;
  }
}

/* v131 UI refresh: premium layout pass built from the safe V121/V114 client-film keeper */
:root {
  --ti-blue: #20e7ff;
  --ti-blue-soft: rgba(32,231,255,.18);
  --ti-panel: rgba(4, 9, 15, .86);
  --ti-panel-2: rgba(9, 18, 28, .78);
  --ti-line: rgba(114, 212, 255, .22);
  --ti-text-soft: rgba(186, 231, 248, .72);
  --ti-radius-xl: 26px;
  --ti-radius-lg: 20px;
}

body {
  background:
    radial-gradient(circle at 50% 8%, rgba(32,231,255,.11), transparent 38%),
    linear-gradient(180deg, #05080d, #020408 78%);
}

.ti-header {
  height: 78px;
  padding: 0 24px;
  background:
    linear-gradient(100deg, rgba(32,231,255,.10), transparent 18%, transparent 72%, rgba(32,231,255,.07)),
    linear-gradient(180deg, rgba(9,18,28,.98), rgba(3,7,12,.98));
  border-bottom-color: rgba(108, 219, 255, .28);
  box-shadow: 0 18px 42px rgba(0,0,0,.40), inset 0 -1px 0 rgba(255,255,255,.03);
}

.ti-logo {
  font-size: 36px;
}

.ti-header-status-wrap {
  min-height: 50px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.014)),
    rgba(3, 7, 12, .78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 0 0 1px rgba(32,231,255,.08),
    0 0 22px rgba(32,231,255,.10);
}

.ti-app {
  height: calc(100vh - 78px);
}

.ti-stage {
  background:
    radial-gradient(circle at 50% 43%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 49% 45%, rgba(32,231,255,.16), transparent 39%),
    linear-gradient(180deg, #111923 0%, #101821 46%, #091018 100%);
}

.ti-stage::before {
  opacity: .55;
  background:
    radial-gradient(circle at 50% 70%, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.055), transparent 20%, transparent 80%, rgba(255,255,255,.035)),
    repeating-linear-gradient(90deg, rgba(157,232,255,.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(157,232,255,.025) 0 1px, transparent 1px 84px);
}

.ti-stage::after {
  content: '';
  position: absolute;
  left: 23%;
  right: 16%;
  top: 18%;
  bottom: 20%;
  pointer-events: none;
  opacity: .42;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(32,231,255,.15) 43%, transparent 44%),
    radial-gradient(ellipse at center, transparent 54%, rgba(255,255,255,.08) 55%, transparent 56%);
  filter: blur(.1px);
}

.ti-left-tools {
  top: 110px;
  left: 22px;
  bottom: 220px;
  width: 164px;
  padding: 14px 12px;
  border-radius: var(--ti-radius-xl);
  border-color: rgba(114, 212, 255, .24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(3, 7, 12, .74);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 22px 54px rgba(0,0,0,.42),
    0 0 22px rgba(32,231,255,.10);
}

.ti-left-tools-title {
  margin-left: 8px;
}

.ti-left-tools button.ti-tool-btn,
.ti-left-tools button.ti-fullscreen-tool {
  min-height: 58px;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 16px;
  border-color: rgba(114, 212, 255, .16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.012)),
    rgba(8, 16, 24, .94);
}

.ti-left-tools button.ti-tool-btn:hover,
.ti-left-tools button.ti-fullscreen-tool:hover {
  border-color: rgba(32,231,255,.42);
  box-shadow: 0 0 18px rgba(32,231,255,.12);
}

.ti-tool-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  color: var(--ti-blue);
  font-size: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(32,231,255,.24), transparent 40%),
    rgba(32,231,255,.075);
}

.ti-tool-icon::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(32,231,255,.42);
}

.ti-icon-vehicle::before { content: '▰'; }
.ti-icon-paint::before { content: '◒'; }
.ti-icon-tint::before { content: '◉'; }
.ti-icon-scenes::before { content: '▧'; }
.ti-icon-fullscreen::before { content: '⛶'; font-size: 18px; }
.ti-icon-interior::before { content: '▥'; }

.ti-left-tools button.ti-tool-btn.active {
  border-color: rgba(32,231,255,.62);
  background:
    linear-gradient(180deg, rgba(32,231,255,.18), rgba(32,231,255,.045)),
    rgba(8, 16, 24, .98);
  box-shadow: 0 0 0 1px rgba(32,231,255,.10), 0 0 24px rgba(32,231,255,.22);
}

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

.ti-tool-copy em {
  font-size: 10px;
}

.ti-selected-vehicle-row {
  top: 22px;
  left: 190px;
  min-width: 340px;
  max-width: min(420px, calc(100vw - 780px));
  min-height: 88px;
  align-items: stretch;
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  border-color: rgba(114, 212, 255, .24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.016)),
    rgba(3, 7, 12, .80);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 24px 56px rgba(0,0,0,.45),
    0 0 24px rgba(32,231,255,.12);
}

.ti-selected-vehicle-change {
  order: 2;
  align-self: stretch;
  min-width: 76px;
  min-height: 0;
  border-radius: 16px;
}

.ti-selected-vehicle-card {
  order: 1;
  flex: 1;
  min-height: 68px;
  gap: 12px;
  padding: 0;
}

.ti-selected-vehicle-thumb {
  width: 104px;
  height: 62px;
  border-radius: 15px;
  background: rgba(255,255,255,.075);
}

.ti-selected-vehicle-kicker {
  font-size: 10px;
  letter-spacing: 1.25px;
}

.ti-selected-vehicle-label {
  max-width: 220px;
  font-size: 17px;
  line-height: 1.12;
}

.ti-angle-row {
  top: 34px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 12;
}

.ti-angle-card {
  min-width: 430px;
  padding: 10px 14px 12px;
  gap: 7px;
  border-radius: 23px;
  border-color: rgba(114, 212, 255, .22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.014)),
    rgba(4, 9, 15, .86);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 24px 55px rgba(0,0,0,.43),
    0 0 24px rgba(32,231,255,.12);
}

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

.ti-angle-row button.active {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(32,231,255,.26), rgba(32,231,255,.09)),
    rgba(9,18,28,.96);
}

.ti-selected-film-panel {
  position: absolute;
  z-index: 11;
  top: 102px;
  right: 22px;
  width: 298px;
  min-height: 418px;
  padding: 18px;
  border: 1px solid rgba(114, 212, 255, .24);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.014)),
    rgba(3, 7, 12, .84);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 28px 64px rgba(0,0,0,.50),
    0 0 26px rgba(32,231,255,.13);
  backdrop-filter: blur(12px);
  color: #eaf8ff;
}

.ti-film-panel-kicker {
  color: rgba(186,231,248,.72);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ti-film-panel-head {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(114, 212, 255, .18);
}

.ti-film-panel-title-wrap { min-width: 0; }
.ti-film-panel-title-wrap strong {
  display: block;
  color: var(--ti-blue);
  font-size: 21px;
  line-height: 1.02;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ti-film-panel-title-wrap span {
  display: block;
  color: #eaf8ff;
  font-size: 13px;
  font-weight: 900;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ti-film-panel-vlt {
  display: grid;
  justify-items: end;
  line-height: 1;
}
.ti-film-panel-vlt b {
  color: var(--ti-blue);
  font-size: 26px;
}
.ti-film-panel-vlt small {
  color: rgba(186,231,248,.64);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.ti-film-panel-list {
  display: grid;
  gap: 0;
  margin: 12px 0 16px;
}

.ti-film-panel-item {
  min-height: 58px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(114, 212, 255, .13);
}

.ti-film-panel-item em,
.ti-film-panel-item strong {
  display: block;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ti-film-panel-item em {
  color: rgba(186,231,248,.60);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .9px;
  text-transform: uppercase;
}
.ti-film-panel-item strong {
  margin-top: 3px;
  color: #eaf8ff;
  font-size: 13px;
  font-weight: 1000;
}

.ti-film-panel-icon {
  width: 34px;
  height: 34px;
  position: relative;
  display: inline-grid;
  place-items: center;
  color: var(--ti-blue);
  border-radius: 13px;
  border: 1px solid rgba(32,231,255,.26);
  background: rgba(32,231,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.ti-film-panel-icon::before {
  font-size: 17px;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(32,231,255,.42);
}
.ti-film-panel-shield::before { content:'⬟'; font-size: 21px; }
.ti-film-panel-brand-icon::before { content:'◇'; }
.ti-film-panel-type-icon::before { content:'▰'; }
.ti-film-panel-zone-icon::before { content:'▧'; }
.ti-film-panel-vlt-icon::before { content:'☼'; }

.ti-film-panel-quote,
.ti-film-panel-secondary {
  width: 100%;
  min-height: 42px;
  border-radius: 13px;
  margin-top: 9px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 11px;
}
.ti-film-panel-quote {
  border-color: rgba(32,231,255,.55);
  background: linear-gradient(180deg, #1098e6, #0865b4);
  box-shadow: 0 0 18px rgba(32,231,255,.18);
}
.ti-film-panel-secondary {
  background: rgba(255,255,255,.035);
  color: rgba(234,248,255,.80);
}

.ti-bottom-wrap {
  left: 22px;
  right: 22px;
  bottom: 12px;
  gap: 8px;
}

.ti-film-brand-row,
.ti-film-type-row,
.ti-zone-row,
.ti-bottom-bar,
.ti-paint-row,
.ti-scenes-row,
.ti-interior-view-row {
  max-width: none;
  border-radius: 20px;
  border: 1px solid rgba(114, 212, 255, .16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.010)),
    rgba(3, 7, 12, .82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 20px 46px rgba(0,0,0,.35),
    0 0 18px rgba(32,231,255,.08);
}

.ti-film-brand-row,
.ti-film-type-row {
  min-height: 42px;
}

.ti-zone-row,
.ti-bottom-bar,
.ti-paint-row,
.ti-scenes-row {
  min-height: 48px;
}

.ti-tray-kicker {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(114,212,255,.15);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  color: rgba(186,231,248,.74);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ti-film-brand-row button,
.ti-film-type-row button,
.ti-zone-row button,
.ti-scenes-row button {
  border-radius: 13px;
  min-height: 34px;
  background: rgba(8,16,24,.92);
}

.ti-bottom-bar {
  padding: 8px 14px 10px;
}

.ti-bottom-bar button {
  min-width: 74px;
  min-height: 68px;
  padding: 7px 8px 6px;
  display: inline-grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 15px;
  background: rgba(8,16,24,.92);
}

.ti-vlt-window {
  width: 48px;
  height: 26px;
  display: block;
  border-radius: 16px 18px 9px 7px;
  border: 1px solid rgba(174,226,255,.35);
  background:
    linear-gradient(145deg, rgba(255,255,255,.32), rgba(255,255,255,.06) 42%, rgba(2,5,9,.68) 43%),
    linear-gradient(180deg, rgba(32,231,255,.52), rgba(2,5,9,.92));
  clip-path: polygon(17% 7%, 95% 7%, 88% 91%, 5% 91%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38), 0 0 14px rgba(32,231,255,.10);
  opacity: .98;
  filter: brightness(calc(.68 + (var(--ti-window-darkness, 45%) / 160%)));
}

.ti-vlt-label {
  display: block;
  color: #eaf8ff;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
}

.ti-bottom-bar button.active .ti-vlt-window {
  border-color: rgba(32,231,255,.88);
  box-shadow: 0 0 20px rgba(32,231,255,.34), inset 0 1px 0 rgba(255,255,255,.48);
  background:
    linear-gradient(145deg, rgba(255,255,255,.42), rgba(32,231,255,.18) 42%, rgba(5,20,34,.78) 43%),
    linear-gradient(180deg, rgba(32,231,255,.82), rgba(2,7,14,.88));
}

.ti-bottom-bar button.active .ti-vlt-label {
  color: var(--ti-blue);
}

.ti-film-selected-chip {
  border-color: rgba(114,212,255,.18);
  background: rgba(255,255,255,.06);
}

@media (max-width: 1280px) {
  .ti-selected-film-panel { display: none; }
  .ti-selected-vehicle-row { max-width: min(360px, calc(100vw - 620px)); }
  .ti-left-tools { width: 154px; }
  .ti-bottom-bar button { min-width: 58px; }
  .ti-vlt-window { width: 42px; }
}

@media (max-height: 760px) {
  .ti-selected-film-panel { min-height: 360px; padding: 14px; }
  .ti-film-panel-item { min-height: 48px; }
  .ti-left-tools { bottom: 185px; }
  .ti-bottom-bar button { min-height: 58px; }
  .ti-vlt-window { height: 22px; }
}

/* v131: keep four-bar layout, but place Film Brand and Tint Type on the same top row */
.ti-film-brand-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  min-height: 48px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 12px;
}

.ti-film-brand-row .ti-film-inline-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 0 0 auto;
}

.ti-film-brand-row .ti-film-inline-type {
  margin-left: 14px;
  padding-left: 16px;
  border-left: 1px solid rgba(114, 212, 255, .20);
}

.ti-film-inline-buttons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  min-width: 0;
}

.ti-film-type-row {
  display: none !important;
}

.ti-film-brand-row .ti-film-selected-chip {
  margin-left: auto;
  white-space: nowrap;
  flex: 0 0 auto;
}

.ti-film-brand-row::-webkit-scrollbar {
  height: 6px;
}

.ti-film-brand-row::-webkit-scrollbar-thumb {
  background: rgba(65, 210, 255, .26);
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .ti-film-brand-row {
    flex-wrap: wrap;
    overflow: visible;
  }
  .ti-film-brand-row .ti-film-inline-type {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
  .ti-film-brand-row .ti-film-selected-chip {
    margin-left: 0;
  }
}

/* v131: keep the safe V126 layout, but put Tint Zones and Percentages on one row */
.ti-zone-shade-row {
  width: 100%;
  max-width: none;
  min-height: 78px;
  margin: 0 auto;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  border: 1px solid rgba(114, 212, 255, .16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.010)),
    rgba(3, 7, 12, .82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 20px 46px rgba(0,0,0,.35),
    0 0 18px rgba(32,231,255,.08);
}

.ti-zone-shade-row .ti-zone-row,
.ti-zone-shade-row .ti-bottom-bar {
  width: auto;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ti-zone-shade-row .ti-zone-row {
  flex: 0 0 auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
  padding-right: 12px;
  border-right: 1px solid rgba(114, 212, 255, .16);
}

.ti-zone-shade-row .ti-bottom-bar {
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
}

.ti-zone-shade-row .ti-zone-row button {
  min-width: 116px;
  min-height: 38px;
  padding: 0 13px;
}

.ti-zone-shade-row .ti-zone-row .ti-clear-btn {
  min-width: 112px;
}

.ti-zone-shade-row .ti-bottom-bar button {
  min-width: 62px;
  min-height: 58px;
  padding: 6px 7px 5px;
}

.ti-zone-shade-row .ti-vlt-window {
  width: 42px;
  height: 22px;
}

.ti-zone-shade-row .ti-bottom-bar::-webkit-scrollbar {
  height: 6px;
}

.ti-zone-shade-row .ti-bottom-bar::-webkit-scrollbar-thumb {
  background: rgba(65, 210, 255, .26);
  border-radius: 999px;
}

body.ti-paint-mode .ti-zone-shade-row,
body.ti-scenes-mode .ti-zone-shade-row {
  display: none !important;
}

body.ti-tint-mode .ti-zone-shade-row,
body.ti-interior-mode .ti-zone-shade-row {
  display: flex;
}

@media (max-width: 1280px) {
  .ti-zone-shade-row {
    align-items: stretch;
  }
  .ti-zone-shade-row .ti-zone-row {
    flex: 0 0 430px;
    flex-wrap: wrap;
    align-content: center;
  }
  .ti-zone-shade-row .ti-zone-row button {
    min-width: 96px;
  }
}

@media (max-width: 980px) {
  .ti-zone-shade-row {
    flex-direction: column;
    align-items: stretch;
  }
  .ti-zone-shade-row .ti-zone-row {
    flex: 0 0 auto;
    border-right: 0;
    border-bottom: 1px solid rgba(114, 212, 255, .16);
    padding-right: 0;
    padding-bottom: 8px;
  }
  .ti-zone-shade-row .ti-bottom-bar {
    justify-content: flex-start;
  }
}

/* v131: keep the safe V127 UI, but place Percentages directly next to the Tint Zone buttons instead of pushing them to the far right */
.ti-zone-shade-row {
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 8px !important;
  overflow: hidden;
}

.ti-zone-shade-row .ti-zone-row {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  padding-right: 0 !important;
  border-right: 0 !important;
}

.ti-zone-shade-row .ti-bottom-bar {
  flex: 0 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding-left: 4px !important;
}

.ti-zone-shade-row .ti-bottom-bar::before {
  content: "";
  width: 1px;
  height: 38px;
  margin: 0 4px 0 0;
  flex: 0 0 auto;
  background: linear-gradient(180deg, transparent, rgba(114, 212, 255, .30), transparent);
}

.ti-zone-shade-row .ti-bottom-bar .ti-tray-kicker {
  margin-left: 0 !important;
}

.ti-zone-shade-row .ti-bottom-bar button {
  min-width: 56px !important;
  min-height: 54px !important;
  padding: 5px 6px 5px !important;
}

.ti-zone-shade-row .ti-vlt-window {
  width: 38px !important;
  height: 20px !important;
}

@media (max-width: 1280px) {
  .ti-zone-shade-row {
    align-items: stretch !important;
  }
  .ti-zone-shade-row .ti-zone-row {
    flex: 0 0 auto !important;
    flex-wrap: nowrap !important;
  }
  .ti-zone-shade-row .ti-bottom-bar {
    flex: 1 1 auto !important;
  }
}

@media (max-width: 980px) {
  .ti-zone-shade-row {
    flex-direction: column !important;
    align-items: stretch !important;
    overflow: visible;
  }
  .ti-zone-shade-row .ti-zone-row {
    flex-wrap: wrap !important;
    border-bottom: 1px solid rgba(114, 212, 255, .16) !important;
    padding-bottom: 8px !important;
  }
  .ti-zone-shade-row .ti-bottom-bar::before {
    display: none;
  }
}

/* v131: change percentage icons to blue neon outline silhouettes based on the active tint zone */
.ti-bottom-bar button.ti-percent-zone-windshield .ti-vlt-window,
.ti-bottom-bar button.ti-percent-zone-front .ti-vlt-window,
.ti-bottom-bar button.ti-percent-zone-rear .ti-vlt-window,
.ti-bottom-bar button.ti-percent-zone-eyebrow .ti-vlt-window {
  position: relative;
  overflow: hidden;
  background: rgba(2, 10, 20, .18) !important;
  border: 2px solid rgba(74, 202, 255, .92) !important;
  box-shadow:
    0 0 0 1px rgba(74, 202, 255, .18),
    0 0 12px rgba(32, 231, 255, .20),
    inset 0 0 10px rgba(32, 231, 255, .08) !important;
  transition: clip-path .18s ease, border-radius .18s ease, width .18s ease, height .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ti-bottom-bar button.ti-percent-zone-windshield .ti-vlt-window {
  width: 46px !important;
  height: 21px !important;
  border-radius: 11px 11px 8px 8px !important;
  clip-path: polygon(12% 5%, 88% 5%, 98% 88%, 2% 88%) !important;
}

.ti-bottom-bar button.ti-percent-zone-front .ti-vlt-window {
  width: 38px !important;
  height: 22px !important;
  border-radius: 14px 17px 8px 7px !important;
  clip-path: polygon(20% 7%, 96% 7%, 88% 91%, 5% 91%) !important;
}

.ti-bottom-bar button.ti-percent-zone-rear .ti-vlt-window {
  width: 38px !important;
  height: 22px !important;
  border-radius: 15px 11px 7px 9px !important;
  clip-path: polygon(6% 8%, 82% 8%, 96% 91%, 14% 91%) !important;
}

.ti-bottom-bar button.ti-percent-zone-eyebrow .ti-vlt-window {
  width: 47px !important;
  height: 13px !important;
  margin-top: 4px;
  margin-bottom: 5px;
  border-radius: 999px 999px 13px 13px !important;
  clip-path: polygon(6% 24%, 94% 8%, 98% 70%, 2% 92%) !important;
}

.ti-bottom-bar button.ti-percent-zone-front .ti-vlt-window::after,
.ti-bottom-bar button.ti-percent-zone-rear .ti-vlt-window::after,
.ti-bottom-bar button.ti-percent-zone-windshield .ti-vlt-window::after,
.ti-bottom-bar button.ti-percent-zone-eyebrow .ti-vlt-window::after {
  content: "";
  position: absolute;
  background: rgba(82, 212, 255, .85);
  box-shadow: 0 0 8px rgba(32, 231, 255, .42);
}

.ti-bottom-bar button.ti-percent-zone-front .ti-vlt-window::after,
.ti-bottom-bar button.ti-percent-zone-rear .ti-vlt-window::after {
  top: 4px;
  bottom: 4px;
  width: 1px;
}

.ti-bottom-bar button.ti-percent-zone-front .ti-vlt-window::after {
  right: 8px;
  transform: rotate(7deg);
}

.ti-bottom-bar button.ti-percent-zone-rear .ti-vlt-window::after {
  left: 9px;
  transform: rotate(-7deg);
}

.ti-bottom-bar button.ti-percent-zone-windshield .ti-vlt-window::after,
.ti-bottom-bar button.ti-percent-zone-eyebrow .ti-vlt-window::after {
  left: 8px;
  right: 8px;
  top: 4px;
  height: 1px;
}

.ti-bottom-bar button.active.ti-percent-zone-windshield .ti-vlt-window,
.ti-bottom-bar button.active.ti-percent-zone-front .ti-vlt-window,
.ti-bottom-bar button.active.ti-percent-zone-rear .ti-vlt-window,
.ti-bottom-bar button.active.ti-percent-zone-eyebrow .ti-vlt-window {
  border-color: rgba(118, 233, 255, 1) !important;
  box-shadow:
    0 0 0 1px rgba(118, 233, 255, .28),
    0 0 18px rgba(32, 231, 255, .34),
    inset 0 0 12px rgba(32, 231, 255, .12) !important;
  transform: translateY(-1px) scale(1.03);
}

/* v131: use real mask-style neon SVG outlines on the percentage buttons */
.ti-bottom-bar button .ti-vlt-window,
.ti-bottom-bar button.ti-percent-zone-windshield .ti-vlt-window,
.ti-bottom-bar button.ti-percent-zone-front .ti-vlt-window,
.ti-bottom-bar button.ti-percent-zone-rear .ti-vlt-window,
.ti-bottom-bar button.ti-percent-zone-eyebrow .ti-vlt-window {
  width: 50px !important;
  height: 30px !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  border: 0 !important;
  clip-path: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  overflow: visible !important;
  margin: 0 !important;
  transform: none;
}

.ti-bottom-bar button .ti-vlt-window::after,
.ti-bottom-bar button.ti-percent-zone-windshield .ti-vlt-window::after,
.ti-bottom-bar button.ti-percent-zone-front .ti-vlt-window::after,
.ti-bottom-bar button.ti-percent-zone-rear .ti-vlt-window::after,
.ti-bottom-bar button.ti-percent-zone-eyebrow .ti-vlt-window::after {
  display: none !important;
  content: none !important;
}

.ti-vlt-svg {
  width: 54px;
  height: 33px;
  display: block;
  overflow: visible;
}

.ti-vlt-svg-glow,
.ti-vlt-svg-core {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ti-vlt-svg-glow {
  stroke: rgba(20, 195, 255, .42);
  stroke-width: 7.2;
  filter: drop-shadow(0 0 6px rgba(32, 231, 255, .52)) drop-shadow(0 0 13px rgba(0, 142, 255, .32));
}

.ti-vlt-svg-core {
  stroke: rgba(124, 236, 255, .98);
  stroke-width: 3.1;
  filter: drop-shadow(0 0 3px rgba(32, 231, 255, .45));
}

.ti-bottom-bar button:hover .ti-vlt-svg-core,
.ti-bottom-bar button.active .ti-vlt-svg-core {
  stroke: rgba(180, 249, 255, 1);
  stroke-width: 3.35;
}

.ti-bottom-bar button:hover .ti-vlt-svg-glow,
.ti-bottom-bar button.active .ti-vlt-svg-glow {
  stroke: rgba(26, 216, 255, .60);
  filter: drop-shadow(0 0 8px rgba(32, 231, 255, .75)) drop-shadow(0 0 18px rgba(0, 142, 255, .46));
}

.ti-bottom-bar button.active .ti-vlt-window,
.ti-bottom-bar button.active.ti-percent-zone-windshield .ti-vlt-window,
.ti-bottom-bar button.active.ti-percent-zone-front .ti-vlt-window,
.ti-bottom-bar button.active.ti-percent-zone-rear .ti-vlt-window,
.ti-bottom-bar button.active.ti-percent-zone-eyebrow .ti-vlt-window {
  transform: translateY(-1px) scale(1.04) !important;
}

/* v144: use one shared background panel behind the bottom two tint-control rows */
.ti-tint-controls-panel {
  display: none;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 10px 14px 12px;
  border-radius: 22px;
  border: 1px solid rgba(114, 212, 255, .18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012)),
    rgba(3, 7, 12, .84);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 20px 46px rgba(0,0,0,.35),
    0 0 18px rgba(32,231,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

body.ti-tint-mode .ti-tint-controls-panel,
body.ti-interior-mode .ti-tint-controls-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.ti-paint-mode .ti-tint-controls-panel,
body.ti-scenes-mode .ti-tint-controls-panel {
  display: none !important;
}

.ti-tint-controls-panel .ti-film-brand-row,
.ti-tint-controls-panel .ti-film-type-row,
.ti-tint-controls-panel .ti-zone-shade-row {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ti-tint-controls-panel .ti-film-brand-row {
  padding: 2px 0 4px !important;
}

.ti-tint-controls-panel .ti-film-brand-row .ti-film-inline-type {
  border-left-color: rgba(114, 212, 255, .14);
}

.ti-tint-controls-panel .ti-zone-shade-row {
  padding: 10px 0 0 !important;
  border-top: 1px solid rgba(114, 212, 255, .12) !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  background: transparent !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar::before {
  background: linear-gradient(180deg, transparent, rgba(114, 212, 255, .24), transparent);
}

@media (max-width: 980px) {
  .ti-tint-controls-panel {
    padding: 10px 12px 12px;
    gap: 8px;
  }

  .ti-tint-controls-panel .ti-zone-shade-row {
    padding-top: 8px !important;
  }
}

/* v144: tint brand logo support from /portal/assets/tintlogos/ */
.ti-brand-logo-target {
  gap: 7px;
  min-width: 64px;
  justify-content: center;
}

.ti-brand-button-logo {
  display: none;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 24px;
  min-width: 0;
  pointer-events: none;
}

.ti-brand-button-logo img {
  display: block;
  max-width: 78px;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(32, 231, 255, .10));
}

.ti-brand-logo-target.has-logo {
  min-width: 94px;
  padding-left: 10px;
  padding-right: 10px;
}

.ti-brand-logo-target.has-logo .ti-brand-button-logo {
  display: inline-flex;
}

.ti-brand-logo-target.has-logo .ti-brand-button-text {
  display: none;
}

.ti-brand-logo-target.no-logo .ti-brand-button-logo {
  display: none;
}

.ti-film-panel-logo-wrap {
  width: 54px;
  min-width: 54px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ti-film-panel-brand-logo {
  display: block;
  max-width: 92px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 7px;
  filter: drop-shadow(0 0 12px rgba(32, 231, 255, .16));
}

.ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
  width: 96px;
  min-width: 96px;
}

.ti-selected-film-panel.has-brand-logo .ti-film-panel-shield {
  display: none;
}

.ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
  gap: 12px;
}

@media (max-width: 1280px) {
  .ti-brand-button-logo {
    width: 62px;
  }
  .ti-brand-button-logo img {
    max-width: 62px;
  }
  .ti-brand-logo-target.has-logo {
    min-width: 76px;
  }
}

/* v144: squarer panel/button style pass — closer to the reference UI, still slightly rounded */
:root {
  --ti-radius-panel-square: 12px;
  --ti-radius-card-square: 10px;
  --ti-radius-button-square: 7px;
}

/* main panels */
.ti-left-tools,
.ti-selected-vehicle-row,
.ti-selected-vehicle-card,
.ti-angle-card,
.ti-selected-film-panel,
.ti-tint-controls-panel,
.ti-film-brand-row,
.ti-film-type-row,
.ti-zone-shade-row,
.ti-paint-row,
.ti-scenes-row,
.ti-interior-view-row,
.ti-vehicle-picker,
.ti-picker-head,
.ti-mask-debug-dock,
.ti-debug-checker,
.ti-mask-debug-panel {
  border-radius: var(--ti-radius-panel-square) !important;
}

/* tool rail and selected cards get a sharper dashboard shape */
.ti-left-tools {
  border-radius: 12px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 18px 42px rgba(0,0,0,.36),
    0 0 18px rgba(32,231,255,.06) !important;
}

.ti-selected-vehicle-row,
.ti-angle-card,
.ti-selected-film-panel,
.ti-tint-controls-panel {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.055),
    0 18px 44px rgba(0,0,0,.34),
    0 0 18px rgba(32,231,255,.075) !important;
}

/* all major buttons: less pill, more clean squared-off rounded corners */
button,
.ti-tool-btn,
.ti-selected-vehicle-change,
.ti-selected-vehicle-card,
.ti-angle-buttons button,
.ti-film-brand-row button,
.ti-film-type-row button,
.ti-zone-row button,
.ti-bottom-bar button,
.ti-film-panel-quote,
.ti-film-panel-secondary,
.ti-picker-back,
.ti-picker-close,
.ti-picker-search-clear,
.ti-turn-btn,
.ti-scenes-row button,
.ti-paint-row button,
.ti-film-logo-wrap,
.ti-brand-logo-img,
.ti-film-panel-logo-wrap {
  border-radius: var(--ti-radius-button-square) !important;
}

/* keep tiny circular indicators circular */
.ti-tool-icon,
.ti-film-panel-icon,
.ti-picker-empty-icon,
.ti-vlt-svg,
.ti-vlt-window {
  border-radius: 0 !important;
}

/* left tool widgets: reference-like squared buttons */
.ti-tool-btn {
  min-height: 54px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.040), rgba(255,255,255,.010)),
    rgba(6, 12, 18, .92) !important;
  border-color: rgba(111,210,255,.18) !important;
}

.ti-tool-btn.active,
.ti-tool-btn:hover {
  border-color: rgba(32,231,255,.70) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 0 1px rgba(32,231,255,.14),
    0 0 18px rgba(32,231,255,.20) !important;
}

/* brand/type and zone buttons should feel like squared tabs */
.ti-film-brand-row button,
.ti-film-type-row button,
.ti-zone-row button,
.ti-scenes-row button,
.ti-paint-row button {
  min-height: 34px;
  padding-left: 13px;
  padding-right: 13px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(8, 15, 23, .94) !important;
}

.ti-film-brand-row button.active,
.ti-film-type-row button.active,
.ti-zone-row button.active,
.ti-scenes-row button.active,
.ti-paint-row button.active,
.ti-bottom-bar button.active {
  border-color: rgba(32,231,255,.78) !important;
  background:
    linear-gradient(180deg, rgba(12, 108, 166, .72), rgba(4, 32, 54, .86)),
    rgba(8, 15, 23, .95) !important;
}

/* percentage tiles: squared card look around the neon mask icon */
.ti-bottom-bar button {
  border-radius: 8px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.040), rgba(255,255,255,.010)),
    rgba(6, 12, 18, .95) !important;
}

.ti-bottom-bar button.active {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(32,231,255,.16),
    0 0 18px rgba(32,231,255,.20) !important;
}

/* right selected tint panel: sharper stacked info rows */
.ti-film-panel-item {
  border-radius: 8px !important;
  background: rgba(255,255,255,.018);
}

.ti-film-panel-quote,
.ti-film-panel-secondary {
  min-height: 38px;
}

/* selected vehicle card / thumbnail match the squarer look */
.ti-selected-vehicle-thumb,
.ti-selected-vehicle-card img,
.ti-brand-logo-img,
.ti-film-panel-logo-img {
  border-radius: 6px !important;
}

/* keep outer bottom shared panel squarer while preserving the unified two-row background */
.ti-tint-controls-panel {
  border-radius: 12px !important;
  padding: 10px 14px 12px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row {
  border-top-color: rgba(114, 212, 255, .13) !important;
}

@media (max-width: 980px) {
  .ti-left-tools,
  .ti-selected-vehicle-row,
  .ti-angle-card,
  .ti-selected-film-panel,
  .ti-tint-controls-panel {
    border-radius: 10px !important;
  }
}

/* v144: bottom row spacing pass — make zone and percentage buttons even height and use the center width better */
.ti-tint-controls-panel {
  padding: 11px 14px 13px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row {
  display: grid !important;
  grid-template-columns: minmax(500px, .92fr) minmax(0, 1.08fr) !important;
  align-items: stretch !important;
  gap: 12px !important;
  min-height: 66px !important;
  padding-top: 10px !important;
  overflow: hidden !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  height: 100% !important;
  min-height: 60px !important;
  display: flex !important;
  align-items: stretch !important;
  gap: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row {
  justify-content: flex-start !important;
  padding-right: 12px !important;
  border-right: 1px solid rgba(114, 212, 255, .16) !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  justify-content: space-between !important;
  padding-left: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar::before {
  display: none !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-tray-kicker {
  height: 58px !important;
  min-height: 58px !important;
  align-self: stretch !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 12px !important;
  margin: 0 !important;
  border-radius: 8px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button,
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button {
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button {
  min-width: 102px !important;
  flex: 1 1 102px !important;
  padding: 0 10px !important;
  white-space: normal !important;
  line-height: 1.1 !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn {
  min-width: 104px !important;
  flex: 1 1 104px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar .ti-tray-kicker {
  flex: 0 0 auto !important;
  min-width: 112px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button {
  flex: 1 1 58px !important;
  min-width: 58px !important;
  max-width: 82px !important;
  padding: 5px 6px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-vlt-window {
  width: 46px !important;
  height: 28px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-vlt-svg {
  width: 50px !important;
  height: 30px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-vlt-label {
  font-size: 11px !important;
}

@media (max-width: 1320px) {
  .ti-tint-controls-panel .ti-zone-shade-row {
    grid-template-columns: minmax(450px, .88fr) minmax(0, 1.12fr) !important;
  }
  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button {
    min-width: 88px !important;
    flex-basis: 88px !important;
  }
  .ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar .ti-tray-kicker {
    min-width: 96px !important;
  }
}

@media (max-width: 1080px) {
  .ti-tint-controls-panel .ti-zone-shade-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row {
    border-right: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(114, 212, 255, .16) !important;
  }
}

/* v144: when a tint brand logo is available, let it replace the top brand text in the selected tint information panel */
.ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 14px !important;
}

.ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
  grid-column: 1;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 54px !important;
  justify-content: flex-start !important;
  padding: 4px 0;
}

.ti-selected-film-panel.has-brand-logo .ti-film-panel-brand-logo {
  max-width: 154px !important;
  max-height: 50px !important;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 7px !important;
  filter:
    drop-shadow(0 0 12px rgba(32, 231, 255, .16))
    drop-shadow(0 8px 18px rgba(0, 0, 0, .38));
}

.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap {
  display: none !important;
}

.ti-selected-film-panel.has-brand-logo .ti-film-panel-vlt {
  align-self: center;
}

.ti-selected-film-panel.has-brand-logo .ti-film-panel-vlt b {
  font-size: 27px;
}

@media (max-width: 1280px) {
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-brand-logo {
    max-width: 130px !important;
    max-height: 44px !important;
  }
}

/* v144: bigger electric-blue tray labels and tighter left widget panel */
.ti-film-inline-brand > .ti-tray-kicker,
.ti-film-inline-type > .ti-tray-kicker,
.ti-zone-row > .ti-tray-kicker,
.ti-bottom-bar > .ti-tray-kicker {
  color: #20e7ff !important;
  font-size: 13px !important;
  line-height: 1 !important;
  letter-spacing: 1.15px !important;
  text-shadow: 0 0 10px rgba(32, 231, 255, .62), 0 0 20px rgba(32, 231, 255, .25) !important;
  border-color: rgba(32, 231, 255, .38) !important;
  background: rgba(32, 231, 255, .075) !important;
}

.ti-film-inline-brand > .ti-tray-kicker,
.ti-film-inline-type > .ti-tray-kicker,
.ti-zone-row > .ti-tray-kicker {
  min-height: 34px !important;
  padding: 0 13px !important;
}

.ti-zone-row > .ti-tray-kicker,
.ti-bottom-bar > .ti-tray-kicker,
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar .ti-tray-kicker {
  min-width: 124px !important;
  font-size: 13px !important;
}

/* Let the left widget background panel hug the buttons instead of hanging far below them. */
.ti-left-tools {
  bottom: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 12px !important;
  max-height: calc(100vh - 246px) !important;
  overflow-y: auto !important;
  scrollbar-width: thin;
}

body.ti-interior-mode .ti-left-tools,
body.ti-tint-mode .ti-left-tools,
body.ti-paint-mode .ti-left-tools,
body.ti-scenes-mode .ti-left-tools {
  bottom: auto !important;
  height: auto !important;
}

.ti-left-tools::-webkit-scrollbar {
  width: 6px;
}

.ti-left-tools::-webkit-scrollbar-thumb {
  background: rgba(65, 210, 255, .26);
  border-radius: 999px;
}

@media (max-height: 760px) {
  .ti-left-tools {
    max-height: calc(100vh - 190px) !important;
  }
}


/* v144: flush and organize the lower tint control panels */
.ti-bottom-wrap {
  left: 22px !important;
  right: 22px !important;
  bottom: 12px !important;
  gap: 0 !important;
}

.ti-tint-controls-panel {
  padding: 8px !important;
  border-radius: 13px !important;
  border: 1px solid rgba(114, 212, 255, .20) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.014)),
    rgba(3, 7, 12, .86) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 18px 42px rgba(0,0,0,.38),
    0 0 18px rgba(32,231,255,.08) !important;
}

body.ti-tint-mode .ti-tint-controls-panel,
body.ti-interior-mode .ti-tint-controls-panel {
  gap: 8px !important;
}

.ti-tint-controls-panel .ti-film-brand-row,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  border: 1px solid rgba(114, 212, 255, .16) !important;
  border-radius: 9px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.010)),
    rgba(8, 14, 22, .78) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.055),
    0 0 12px rgba(32,231,255,.04) !important;
}

.ti-tint-controls-panel .ti-film-brand-row {
  min-height: 46px !important;
  height: 46px !important;
  padding: 6px 8px !important;
  gap: 10px !important;
  align-items: center !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.ti-tint-controls-panel .ti-film-inline-group,
.ti-tint-controls-panel .ti-film-inline-buttons {
  height: 100%;
  align-items: center !important;
}

.ti-tint-controls-panel .ti-film-brand-row .ti-film-inline-type {
  margin-left: 10px !important;
  padding-left: 12px !important;
}

.ti-tint-controls-panel .ti-film-brand-row button,
.ti-tint-controls-panel .ti-film-selected-chip {
  min-height: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ti-tint-controls-panel .ti-zone-shade-row {
  display: grid !important;
  grid-template-columns: minmax(430px, .92fr) minmax(520px, 1.08fr) !important;
  gap: 8px !important;
  min-height: 74px !important;
  height: 74px !important;
  padding: 0 !important;
  border: 0 !important;
  border-top: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  align-items: stretch !important;
  overflow: hidden !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  min-height: 74px !important;
  height: 74px !important;
  padding: 8px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  overflow: hidden !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row {
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar::before {
  display: none !important;
}

.ti-tint-controls-panel .ti-tray-kicker {
  min-height: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  padding: 0 12px !important;
  color: #20e7ff !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
  letter-spacing: 1.25px !important;
  text-shadow: 0 0 14px rgba(32,231,255,.55) !important;
  background: rgba(32,231,255,.055) !important;
  border-color: rgba(32,231,255,.22) !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button {
  height: 52px !important;
  min-height: 52px !important;
  min-width: 0 !important;
  flex: 1 1 0 !important;
  padding: 0 10px !important;
  border-radius: 8px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn {
  flex: .9 1 0 !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button {
  height: 52px !important;
  min-height: 52px !important;
  min-width: 56px !important;
  flex: 1 1 58px !important;
  max-width: 86px !important;
  padding: 5px 6px !important;
  border-radius: 8px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-vlt-window,
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button .ti-vlt-window {
  height: 25px !important;
  margin: 0 !important;
}

.ti-tint-controls-panel .ti-vlt-svg {
  width: 46px !important;
  height: 28px !important;
}

@media (max-width: 1180px) {
  .ti-tint-controls-panel .ti-zone-shade-row {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
  .ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
    height: auto !important;
    min-height: 64px !important;
  }
}

/* v144: align top control panels and center the left widget stack */
.ti-left-tools {
  top: 156px !important;
  left: 22px !important;
  bottom: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 12px !important;
}

.ti-selected-vehicle-row {
  top: 22px !important;
  left: 22px !important;
}

.ti-angle-row {
  top: 22px !important;
}

.ti-selected-film-panel {
  top: 22px !important;
  right: 22px !important;
}

body.ti-interior-mode .ti-left-tools,
body.ti-tint-mode .ti-left-tools,
body.ti-paint-mode .ti-left-tools,
body.ti-scenes-mode .ti-left-tools {
  top: 156px !important;
  bottom: auto !important;
  height: auto !important;
}

body.ti-interior-mode .ti-selected-vehicle-row,
body.ti-interior-mode .ti-angle-row,
body.ti-interior-mode .ti-selected-film-panel {
  top: 22px !important;
}

@media (max-width: 1280px) {
  .ti-left-tools {
    top: 144px !important;
    left: 14px !important;
  }
  .ti-selected-vehicle-row {
    top: 14px !important;
    left: 14px !important;
    max-width: min(360px, calc(100vw - 620px)) !important;
  }
  .ti-angle-row {
    top: 14px !important;
  }
}

@media (max-height: 760px) {
  .ti-left-tools {
    top: 128px !important;
  }
}

/* v144: actual program styling pass — logo-blue accents, cleaner bottom buttons, taller widget icons */
:root {
  --ti-blue: #00b7ff !important;
  --ti-blue-soft: rgba(0, 183, 255, .18) !important;
  --ti-blue-glow: rgba(0, 183, 255, .45) !important;
}

/* Use the Tint It logo blue on key labels and icons. */
.ti-tray-kicker,
.ti-film-inline-brand > .ti-tray-kicker,
.ti-film-inline-type > .ti-tray-kicker,
.ti-zone-row > .ti-tray-kicker,
.ti-bottom-bar > .ti-tray-kicker,
.ti-angle-kicker,
.ti-left-tools-title,
.ti-selected-vehicle-kicker,
.ti-film-panel-kicker,
.ti-status-label,
.ti-film-panel-title-wrap strong,
.ti-film-panel-vlt b,
.ti-film-panel-icon,
.ti-tool-icon,
.ti-tool-copy strong {
  color: var(--ti-blue) !important;
  text-shadow: 0 0 12px rgba(0,183,255,.48), 0 0 24px rgba(0,183,255,.18) !important;
}

/* Remove heavy blue fill/overlay from bottom controls; keep dark buttons with blue outlines/glow. */
.ti-tint-controls-panel .ti-film-brand-row button.active,
.ti-tint-controls-panel .ti-film-type-row button.active,
.ti-tint-controls-panel .ti-zone-row button.active,
.ti-tint-controls-panel .ti-bottom-bar button.active,
.ti-film-brand-row button.active,
.ti-film-type-row button.active,
.ti-zone-row button.active,
.ti-bottom-bar button.active {
  color: #f2fbff !important;
  border-color: rgba(0,183,255,.86) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.040), rgba(255,255,255,.010)),
    rgba(6, 12, 18, .96) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(0,183,255,.12),
    0 0 18px rgba(0,183,255,.24) !important;
}

.ti-tint-controls-panel .ti-film-brand-row button.active *,
.ti-tint-controls-panel .ti-film-type-row button.active *,
.ti-tint-controls-panel .ti-zone-row button.active *,
.ti-tint-controls-panel .ti-bottom-bar button.active * {
  color: inherit !important;
}

.ti-bottom-bar button.active .ti-vlt-label,
.ti-zone-row button.active,
.ti-film-brand-row button.active,
.ti-film-type-row button.active {
  color: var(--ti-blue) !important;
  text-shadow: 0 0 10px rgba(0,183,255,.42) !important;
}

.ti-vlt-svg-core {
  stroke: rgba(0,183,255,1) !important;
}

.ti-vlt-svg-glow {
  stroke: rgba(0,183,255,.52) !important;
  filter: drop-shadow(0 0 7px rgba(0,183,255,.68)) drop-shadow(0 0 14px rgba(0,110,255,.32)) !important;
}

/* Left widget rail: taller, icon-above-label layout like the reference widgets. */
.ti-left-tools {
  width: 132px !important;
  padding: 12px 10px 12px !important;
  gap: 9px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.050), rgba(255,255,255,.012)),
    rgba(5, 10, 16, .88) !important;
}

.ti-left-tools button.ti-tool-btn,
.ti-left-tools button.ti-fullscreen-tool {
  min-height: 76px !important;
  padding: 9px 8px 8px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 7px !important;
  text-align: center !important;
  border-radius: 10px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.040), rgba(255,255,255,.010)),
    rgba(4, 9, 15, .94) !important;
  border-color: rgba(0,183,255,.20) !important;
}

.ti-left-tools button.ti-tool-btn.active,
.ti-left-tools button.ti-fullscreen-tool.active,
.ti-left-tools button.ti-tool-btn:hover,
.ti-left-tools button.ti-fullscreen-tool:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.012)),
    rgba(4, 10, 18, .98) !important;
  border-color: rgba(0,183,255,.78) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(0,183,255,.12),
    0 0 20px rgba(0,183,255,.24) !important;
}

.ti-tool-icon {
  width: 42px !important;
  height: 32px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--ti-blue) !important;
  position: relative !important;
  display: block !important;
}

.ti-tool-icon::before,
.ti-tool-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  color: var(--ti-blue) !important;
  border-color: currentColor !important;
  filter: drop-shadow(0 0 5px rgba(0,183,255,.68));
}

/* vehicle icon */
.ti-icon-vehicle::before {
  left: 7px;
  top: 10px;
  width: 28px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 7px 7px 4px 4px;
}
.ti-icon-vehicle::after {
  left: 11px;
  top: 22px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 17px 0 0 currentColor;
}

/* paint icon */
.ti-icon-paint::before {
  left: 12px;
  top: 5px;
  width: 17px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 58% 58% 52% 52%;
  transform: rotate(23deg);
}
.ti-icon-paint::after {
  left: 14px;
  top: 14px;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: rotate(23deg);
}

/* tint/window icon */
.ti-icon-tint::before {
  left: 5px;
  top: 8px;
  width: 32px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 3px;
  clip-path: polygon(20% 5%, 96% 5%, 86% 92%, 4% 92%);
}
.ti-icon-tint::after { display: none; }

/* scenes icon */
.ti-icon-scenes::before {
  left: 5px;
  top: 8px;
  width: 32px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 4px;
}
.ti-icon-scenes::after {
  left: 9px;
  top: 18px;
  width: 22px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: skewX(-24deg) rotate(0deg);
}

/* full screen icon */
.ti-icon-fullscreen::before {
  left: 8px;
  top: 7px;
  width: 26px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 2px;
  clip-path: polygon(0 0, 34% 0, 34% 18%, 18% 18%, 18% 34%, 0 34%, 0 0, 66% 0, 100% 0, 100% 34%, 82% 34%, 82% 18%, 66% 18%, 66% 0, 100% 66%, 100% 100%, 66% 100%, 66% 82%, 82% 82%, 82% 66%, 100% 66%, 34% 100%, 0 100%, 0 66%, 18% 66%, 18% 82%, 34% 82%, 34% 100%);
}
.ti-icon-fullscreen::after { display:none; }

/* interior icon */
.ti-icon-interior::before {
  left: 10px;
  top: 7px;
  width: 22px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 7px 7px 4px 4px;
}
.ti-icon-interior::after {
  left: 15px;
  top: 8px;
  width: 2px;
  height: 20px;
  background: currentColor;
  box-shadow: 10px 0 0 currentColor;
}

.ti-tool-copy {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
}

.ti-tool-copy strong {
  display: block !important;
  width: 100% !important;
  color: #f5fbff !important;
  font-size: 11px !important;
  line-height: 1.05 !important;
  letter-spacing: .2px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

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

/* Keep the left widget backing panel snug around the taller buttons. */
.ti-left-tools {
  height: auto !important;
  min-height: 0 !important;
  bottom: auto !important;
  max-height: calc(100vh - 242px) !important;
}

body.ti-interior-mode .ti-left-tools,
body.ti-tint-mode .ti-left-tools,
body.ti-paint-mode .ti-left-tools,
body.ti-scenes-mode .ti-left-tools {
  height: auto !important;
  min-height: 0 !important;
  bottom: auto !important;
}

/* v144: bigger/brighter left widget icons only. App behavior is unchanged. */
:root {
  --ti-widget-icon-blue: #2ff3ff !important;
  --ti-widget-icon-blue-soft: rgba(47, 243, 255, .24) !important;
  --ti-widget-icon-blue-glow: rgba(47, 243, 255, .72) !important;
}

.ti-left-tools button.ti-tool-btn,
.ti-left-tools button.ti-fullscreen-tool {
  min-height: 92px !important;
  gap: 9px !important;
  border-color: rgba(47, 243, 255, .30) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 14px rgba(47,243,255,.08) !important;
}

.ti-left-tools button.ti-tool-btn.active,
.ti-left-tools button.ti-fullscreen-tool.active,
.ti-left-tools button.ti-tool-btn:hover,
.ti-left-tools button.ti-fullscreen-tool:hover {
  border-color: rgba(47, 243, 255, .92) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 0 0 1px rgba(47,243,255,.18),
    0 0 28px rgba(47,243,255,.34) !important;
}

.ti-tool-icon {
  width: 56px !important;
  height: 46px !important;
  color: var(--ti-widget-icon-blue) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  display: block !important;
  flex: 0 0 auto !important;
}

.ti-left-tools button.ti-tool-btn.active .ti-tool-icon,
.ti-left-tools button.ti-fullscreen-tool.active .ti-tool-icon,
.ti-left-tools button.ti-tool-btn:hover .ti-tool-icon,
.ti-left-tools button.ti-fullscreen-tool:hover .ti-tool-icon {
  color: #f5feff !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.ti-tool-icon::before,
.ti-tool-icon::after {
  border-color: currentColor !important;
  color: currentColor !important;
  filter:
    drop-shadow(0 0 7px rgba(47,243,255,.92))
    drop-shadow(0 0 16px rgba(0,183,255,.58)) !important;
  opacity: 1 !important;
}

.ti-left-tools button.ti-tool-btn.active .ti-tool-icon::before,
.ti-left-tools button.ti-tool-btn.active .ti-tool-icon::after,
.ti-left-tools button.ti-fullscreen-tool.active .ti-tool-icon::before,
.ti-left-tools button.ti-fullscreen-tool.active .ti-tool-icon::after,
.ti-left-tools button.ti-tool-btn:hover .ti-tool-icon::before,
.ti-left-tools button.ti-tool-btn:hover .ti-tool-icon::after,
.ti-left-tools button.ti-fullscreen-tool:hover .ti-tool-icon::before,
.ti-left-tools button.ti-fullscreen-tool:hover .ti-tool-icon::after {
  filter:
    drop-shadow(0 0 9px rgba(255,255,255,.85))
    drop-shadow(0 0 20px rgba(47,243,255,.95))
    drop-shadow(0 0 34px rgba(0,183,255,.54)) !important;
}

.ti-tool-copy strong {
  font-size: 11px !important;
  line-height: 1.04 !important;
}

/* vehicle icon */
.ti-icon-vehicle::before {
  left: 6px !important;
  top: 13px !important;
  width: 44px !important;
  height: 18px !important;
  border-width: 3px !important;
  border-radius: 11px 11px 6px 6px !important;
}
.ti-icon-vehicle::after {
  left: 12px !important;
  top: 34px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: currentColor !important;
  box-shadow: 24px 0 0 currentColor !important;
}

/* paint icon */
.ti-icon-paint::before {
  left: 17px !important;
  top: 5px !important;
  width: 22px !important;
  height: 34px !important;
  border-width: 3px !important;
  border-radius: 58% 58% 52% 52% !important;
  transform: rotate(23deg) !important;
}
.ti-icon-paint::after {
  left: 18px !important;
  top: 21px !important;
  width: 20px !important;
  height: 3px !important;
  background: currentColor !important;
  transform: rotate(23deg) !important;
}

/* tint/window icon */
.ti-icon-tint::before {
  left: 7px !important;
  top: 10px !important;
  width: 42px !important;
  height: 27px !important;
  border-width: 3px !important;
  border-radius: 5px !important;
  clip-path: polygon(20% 5%, 96% 5%, 86% 92%, 4% 92%) !important;
}
.ti-icon-tint::after { display: none !important; }

/* scenes icon */
.ti-icon-scenes::before {
  left: 6px !important;
  top: 8px !important;
  width: 44px !important;
  height: 29px !important;
  border-width: 3px !important;
  border-radius: 5px !important;
}
.ti-icon-scenes::after {
  left: 11px !important;
  top: 24px !important;
  width: 31px !important;
  height: 18px !important;
  border-left-width: 3px !important;
  border-top-width: 3px !important;
  transform: skewX(-24deg) rotate(0deg) !important;
}

/* full screen icon */
.ti-icon-fullscreen::before {
  left: 8px !important;
  top: 6px !important;
  width: 40px !important;
  height: 32px !important;
  border-width: 3px !important;
  border-radius: 3px !important;
}
.ti-icon-fullscreen::after { display: none !important; }

/* interior icon */
.ti-icon-interior::before {
  left: 13px !important;
  top: 8px !important;
  width: 30px !important;
  height: 30px !important;
  border-width: 3px !important;
  border-radius: 9px 9px 5px 5px !important;
}
.ti-icon-interior::after {
  left: 20px !important;
  top: 10px !important;
  width: 3px !important;
  height: 28px !important;
  background: currentColor !important;
  box-shadow: 13px 0 0 currentColor !important;
}

/* v144: move the neon window icons from the percentage buttons onto the main tint-zone buttons. */
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="windshield"],
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="front"],
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="rear"] {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1px !important;
  padding: 3px 8px !important;
  line-height: 1 !important;
}

.ti-zone-row button .ti-zone-window-icon,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon {
  width: 50px !important;
  height: 27px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ti-blue, #00b7ff) !important;
  line-height: 1 !important;
  filter:
    drop-shadow(0 0 7px rgba(0,183,255,.58))
    drop-shadow(0 0 15px rgba(47,243,255,.28)) !important;
}

.ti-zone-row button .ti-zone-window-icon .ti-vlt-svg,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon .ti-vlt-svg {
  width: 52px !important;
  height: 31px !important;
  display: block !important;
  margin: 0 !important;
}

.ti-zone-row button .ti-zone-window-icon .ti-vlt-svg-glow,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon .ti-vlt-svg-glow {
  stroke: rgba(47,243,255,.58) !important;
  stroke-width: 7.4 !important;
  filter:
    drop-shadow(0 0 7px rgba(47,243,255,.72))
    drop-shadow(0 0 16px rgba(0,183,255,.38)) !important;
}

.ti-zone-row button .ti-zone-window-icon .ti-vlt-svg-core,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon .ti-vlt-svg-core {
  stroke: rgba(214,252,255,1) !important;
  stroke-width: 3.25 !important;
  filter: drop-shadow(0 0 4px rgba(47,243,255,.62)) !important;
}

.ti-zone-row button.active .ti-zone-window-icon,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button.active .ti-zone-window-icon,
.ti-zone-row button:hover .ti-zone-window-icon,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button:hover .ti-zone-window-icon {
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,.56))
    drop-shadow(0 0 20px rgba(47,243,255,.82)) !important;
}

.ti-zone-row button .ti-zone-label,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-label {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font-size: 10.5px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  letter-spacing: .15px !important;
  text-shadow: 0 0 10px rgba(0,183,255,.30) !important;
}

/* v144: percentage buttons are numbers only now, with larger clearer VLT labels. */
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 7px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button .ti-vlt-window,
.ti-bottom-bar button .ti-vlt-window {
  display: none !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button .ti-vlt-label,
.ti-bottom-bar button .ti-vlt-label,
.ti-bottom-bar button.active .ti-vlt-label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  color: inherit !important;
  font-size: 19px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  letter-spacing: -.35px !important;
  text-shadow: 0 0 12px rgba(0,183,255,.40) !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button.active .ti-vlt-label,
.ti-bottom-bar button.active .ti-vlt-label {
  color: var(--ti-blue, #00b7ff) !important;
  text-shadow:
    0 0 10px rgba(0,183,255,.72),
    0 0 20px rgba(47,243,255,.34) !important;
}

/* v144: soften zone-button window icons and improve label spacing/readability. */
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="windshield"],
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="front"],
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="rear"] {
  gap: 5px !important;
  padding: 4px 10px 5px !important;
}

.ti-zone-row button .ti-zone-window-icon,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon {
  width: 50px !important;
  height: 25px !important;
  margin: 0 0 2px !important;
  opacity: .92 !important;
  filter: drop-shadow(0 0 3px rgba(0,183,255,.22)) !important;
}

.ti-zone-row button .ti-zone-window-icon .ti-vlt-svg,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon .ti-vlt-svg {
  width: 50px !important;
  height: 29px !important;
}

.ti-zone-row button .ti-zone-window-icon .ti-vlt-svg-glow,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon .ti-vlt-svg-glow {
  stroke: rgba(47,243,255,.24) !important;
  stroke-width: 5.4 !important;
  filter: drop-shadow(0 0 3px rgba(47,243,255,.28)) !important;
}

.ti-zone-row button .ti-zone-window-icon .ti-vlt-svg-core,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon .ti-vlt-svg-core {
  stroke: rgba(214,252,255,.92) !important;
  stroke-width: 2.75 !important;
  filter: drop-shadow(0 0 2px rgba(47,243,255,.22)) !important;
}

.ti-zone-row button.active .ti-zone-window-icon,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button.active .ti-zone-window-icon,
.ti-zone-row button:hover .ti-zone-window-icon,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button:hover .ti-zone-window-icon {
  opacity: 1 !important;
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,.22))
    drop-shadow(0 0 8px rgba(47,243,255,.36)) !important;
}

.ti-zone-row button.active .ti-zone-window-icon .ti-vlt-svg-glow,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button.active .ti-zone-window-icon .ti-vlt-svg-glow,
.ti-zone-row button:hover .ti-zone-window-icon .ti-vlt-svg-glow,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button:hover .ti-zone-window-icon .ti-vlt-svg-glow {
  stroke: rgba(47,243,255,.34) !important;
  filter: drop-shadow(0 0 5px rgba(47,243,255,.42)) !important;
}

.ti-zone-row button .ti-zone-label,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-label {
  margin-top: 2px !important;
  font-size: 12.2px !important;
  line-height: 1.05 !important;
  letter-spacing: .25px !important;
  text-shadow: 0 0 6px rgba(0,183,255,.20) !important;
}

@media (max-width: 1180px) {
  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="windshield"],
  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="front"],
  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="rear"] {
    gap: 4px !important;
  }

  .ti-zone-row button .ti-zone-label,
  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-label {
    font-size: 11.7px !important;
  }
}

/* v146: make the top Film Brand / Tint Type row taller and closer to the lower zone/percentage controls. */
.ti-tint-controls-panel {
  gap: 9px !important;
}

.ti-tint-controls-panel .ti-film-brand-row {
  min-height: 66px !important;
  height: 66px !important;
  padding: 7px 9px !important;
  gap: 11px !important;
  align-items: center !important;
}

.ti-tint-controls-panel .ti-film-inline-group,
.ti-tint-controls-panel .ti-film-inline-buttons {
  min-height: 50px !important;
  height: 50px !important;
  align-items: stretch !important;
  gap: 8px !important;
}

.ti-tint-controls-panel .ti-film-inline-brand > .ti-tray-kicker,
.ti-tint-controls-panel .ti-film-inline-type > .ti-tray-kicker,
.ti-tint-controls-panel .ti-film-brand-row .ti-tray-kicker {
  min-height: 50px !important;
  height: 50px !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  border-radius: 8px !important;
}

.ti-tint-controls-panel .ti-film-brand-row button,
.ti-tint-controls-panel .ti-film-type-row button,
.ti-tint-controls-panel .ti-film-selected-chip {
  min-height: 50px !important;
  height: 50px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  line-height: 1.05 !important;
  letter-spacing: .15px !important;
  font-weight: 1000 !important;
}

.ti-tint-controls-panel .ti-film-brand-row .ti-film-inline-type {
  margin-left: 12px !important;
  padding-left: 14px !important;
  min-height: 50px !important;
  align-items: stretch !important;
}

.ti-brand-logo-target {
  gap: 8px !important;
  min-width: 88px !important;
}

.ti-brand-logo-target.has-logo {
  min-width: 126px !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.ti-brand-button-logo {
  width: 104px !important;
  height: 36px !important;
}

.ti-brand-button-logo img {
  max-width: 104px !important;
  max-height: 36px !important;
}

.ti-tint-controls-panel .ti-film-selected-chip {
  min-width: 122px !important;
  color: rgba(238,248,255,.86) !important;
}

@media (max-width: 1280px) {
  .ti-tint-controls-panel .ti-film-brand-row {
    min-height: 62px !important;
    height: 62px !important;
  }

  .ti-tint-controls-panel .ti-film-brand-row button,
  .ti-tint-controls-panel .ti-film-type-row button,
  .ti-tint-controls-panel .ti-film-selected-chip,
  .ti-tint-controls-panel .ti-film-inline-group,
  .ti-tint-controls-panel .ti-film-inline-buttons,
  .ti-tint-controls-panel .ti-film-brand-row .ti-tray-kicker {
    min-height: 46px !important;
    height: 46px !important;
  }

  .ti-brand-logo-target.has-logo {
    min-width: 108px !important;
  }

  .ti-brand-button-logo,
  .ti-brand-button-logo img {
    max-width: 92px !important;
    width: 92px !important;
  }
}

@media (max-width: 760px) {
  .ti-tint-controls-panel .ti-film-brand-row {
    height: auto !important;
    min-height: 62px !important;
    align-items: stretch !important;
  }

  .ti-tint-controls-panel .ti-film-brand-row button,
  .ti-tint-controls-panel .ti-film-type-row button,
  .ti-tint-controls-panel .ti-film-selected-chip {
    font-size: 12.5px !important;
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
}

/* v146: selected tint information panel categories from the user's reference.
   Theme stays the same: dark glass panel, neon blue accents, clean squared controls. */
.ti-selected-film-panel {
  width: 314px !important;
  min-height: 0 !important;
  padding: 18px 18px 20px !important;
}

.ti-selected-film-panel .ti-film-panel-kicker {
  margin-bottom: 14px !important;
}

.ti-selected-film-panel .ti-film-panel-head,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
  display: grid !important;
  grid-template-columns: minmax(108px, .95fr) minmax(0, 1.05fr) !important;
  align-items: center !important;
  gap: 14px !important;
  padding-bottom: 15px !important;
  border-bottom: 1px solid rgba(114, 212, 255, .18) !important;
}

.ti-selected-film-panel .ti-film-panel-logo-wrap,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
  grid-column: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 58px !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 6px 8px !important;
  border: 1px solid rgba(114, 212, 255, .16) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.006)),
    rgba(0, 0, 0, .58) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 0 14px rgba(32,231,255,.07) !important;
}

.ti-selected-film-panel .ti-film-panel-brand-logo,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-brand-logo {
  max-width: 138px !important;
  max-height: 46px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 0 9px rgba(32, 231, 255, .12))
    drop-shadow(0 8px 16px rgba(0, 0, 0, .34)) !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap {
  display: block !important;
  min-width: 0 !important;
}

.ti-film-panel-title-wrap em {
  display: block !important;
  color: var(--ti-blue, #00b7ff) !important;
  font-size: 11px !important;
  font-style: normal !important;
  font-weight: 1000 !important;
  letter-spacing: .95px !important;
  line-height: 1 !important;
  margin-bottom: 5px !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 8px rgba(0,183,255,.26) !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap strong,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
  display: block !important;
  color: #eaf8ff !important;
  font-size: 18px !important;
  line-height: 1.03 !important;
  font-weight: 1000 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  text-shadow: 0 0 9px rgba(255,255,255,.10) !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap span,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap span {
  display: block !important;
  color: rgba(186,231,248,.70) !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
  margin-top: 5px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.ti-selected-film-panel .ti-film-panel-vlt {
  display: none !important;
}

.ti-selected-film-panel .ti-film-panel-list {
  display: grid !important;
  gap: 7px !important;
  margin: 13px 0 13px !important;
}

.ti-selected-film-panel .ti-film-panel-item {
  min-height: 60px !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  gap: 11px !important;
  align-items: center !important;
  padding: 8px 10px !important;
  border: 1px solid rgba(114, 212, 255, .13) !important;
  border-bottom: 1px solid rgba(114, 212, 255, .13) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008)),
    rgba(8, 13, 20, .66) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.ti-selected-film-panel .ti-film-panel-item em {
  color: var(--ti-blue, #00b7ff) !important;
  font-size: 11.5px !important;
  line-height: 1.05 !important;
  letter-spacing: .65px !important;
  text-shadow: 0 0 8px rgba(0,183,255,.26) !important;
}

.ti-selected-film-panel .ti-film-panel-item strong {
  color: #eaf8ff !important;
  font-size: 14.5px !important;
  line-height: 1.08 !important;
  letter-spacing: .1px !important;
  margin-top: 4px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.ti-selected-film-panel .ti-film-panel-item-percentages strong {
  font-size: 13.5px !important;
  line-height: 1.15 !important;
  letter-spacing: .35px !important;
}

.ti-film-panel-percent-icon::before { content: '◇'; }
.ti-film-panel-uv-icon::before { content: '▰'; }
.ti-film-panel-heat-icon::before { content: '▧'; }
.ti-film-panel-vlt-icon::before { content: '☼'; }

.ti-selected-film-panel .ti-film-panel-icon::before {
  text-shadow: 0 0 7px rgba(32,231,255,.25) !important;
}

.ti-selected-film-panel .ti-film-panel-quote {
  min-height: 46px !important;
  margin-top: 10px !important;
  font-size: 11.5px !important;
  font-weight: 1000 !important;
  letter-spacing: .65px !important;
}

.ti-selected-film-panel .ti-film-panel-quote:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 22px rgba(32,231,255,.25) !important;
}

.ti-selected-film-panel .ti-film-panel-secondary {
  display: none !important;
}

@media (max-width: 1280px) {
  .ti-selected-film-panel {
    width: 292px !important;
    padding: 16px !important;
  }

  .ti-selected-film-panel .ti-film-panel-head,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
    grid-template-columns: minmax(96px, .88fr) minmax(0, 1.12fr) !important;
    gap: 12px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item {
    min-height: 56px !important;
  }

  .ti-selected-film-panel .ti-film-panel-title-wrap strong,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
    font-size: 16.5px !important;
  }
}

/* v174: lower tint-control fit cleanup.
   The taller Film Brand / Tint Type row made the zone icon + label stack too tight on some screens.
   Give the lower zone row more vertical room and lift the whole tray slightly so the
   Windshield / Front Doors / Rear Doors labels are not clipped. */
.ti-bottom-wrap {
  bottom: 20px !important;
}

.ti-tint-controls-panel {
  padding: 8px 8px 10px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row {
  min-height: 86px !important;
  height: 86px !important;
  align-items: stretch !important;
  overflow: hidden !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  min-height: 86px !important;
  height: 86px !important;
  padding: 9px 8px !important;
  align-items: center !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row {
  overflow: visible !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-tray-kicker {
  min-height: 60px !important;
  height: 60px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn {
  height: 66px !important;
  min-height: 66px !important;
  max-height: none !important;
  overflow: visible !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="windshield"],
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="front"],
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="rear"] {
  padding: 5px 9px 8px !important;
  gap: 4px !important;
  justify-content: center !important;
}

.ti-zone-row button .ti-zone-window-icon,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon {
  height: 24px !important;
  margin: 0 0 1px !important;
  transform: translateY(-1px) !important;
}

.ti-zone-row button .ti-zone-window-icon .ti-vlt-svg,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon .ti-vlt-svg {
  height: 27px !important;
}

.ti-zone-row button .ti-zone-label,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-label {
  margin-top: 1px !important;
  font-size: 12.6px !important;
  line-height: 1.1 !important;
  transform: translateY(-1px) !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button {
  height: 60px !important;
  min-height: 60px !important;
  max-height: none !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button .ti-vlt-label,
.ti-bottom-bar button .ti-vlt-label,
.ti-bottom-bar button.active .ti-vlt-label {
  font-size: 19.5px !important;
  line-height: 1 !important;
}

@media (max-width: 1180px) {
  .ti-tint-controls-panel .ti-zone-shade-row {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
  .ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
    height: auto !important;
    min-height: 76px !important;
  }
}

@media (max-height: 760px) {
  .ti-bottom-wrap {
    bottom: 14px !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row {
    min-height: 82px !important;
    height: 82px !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
  .ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
    min-height: 82px !important;
    height: 82px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button,
  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn {
    height: 64px !important;
    min-height: 64px !important;
  }
}


/* v174: true lower-tray no-clip fix.
   v147 added height, but the shared row/panel still clipped the zone icon + label stack
   on shorter browser heights. This pass removes the vertical clipping and gives the
   zone buttons enough real room inside the lower panel. App behavior is unchanged. */
.ti-bottom-wrap {
  bottom: 28px !important;
  overflow: visible !important;
  max-height: none !important;
}

.ti-tint-controls-panel {
  overflow: visible !important;
  padding: 9px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row {
  min-height: 98px !important;
  height: 98px !important;
  align-items: stretch !important;
  overflow: visible !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  min-height: 98px !important;
  height: 98px !important;
  padding: 10px 8px !important;
  align-items: center !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row {
  overflow: visible !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  overflow-x: auto !important;
  overflow-y: visible !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-tray-kicker {
  height: 66px !important;
  min-height: 66px !important;
  align-self: center !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn {
  height: 76px !important;
  min-height: 76px !important;
  max-height: none !important;
  overflow: visible !important;
  align-self: center !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="windshield"],
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="front"],
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button[data-zone="rear"] {
  display: grid !important;
  grid-template-rows: 30px auto !important;
  align-content: center !important;
  justify-items: center !important;
  row-gap: 6px !important;
  padding: 7px 9px 8px !important;
  line-height: 1 !important;
}

.ti-zone-row button .ti-zone-window-icon,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon {
  width: 48px !important;
  height: 24px !important;
  margin: 0 !important;
  transform: none !important;
  align-self: end !important;
  overflow: visible !important;
}

.ti-zone-row button .ti-zone-window-icon .ti-vlt-svg,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-window-icon .ti-vlt-svg {
  width: 48px !important;
  height: 26px !important;
  transform: none !important;
}

.ti-zone-row button .ti-zone-label,
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button .ti-zone-label {
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  align-self: start !important;
  font-size: 12.5px !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button {
  height: 66px !important;
  min-height: 66px !important;
  max-height: none !important;
  align-self: center !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar button .ti-vlt-label,
.ti-bottom-bar button .ti-vlt-label,
.ti-bottom-bar button.active .ti-vlt-label {
  font-size: 20px !important;
  line-height: 1 !important;
  transform: none !important;
}

@media (max-height: 760px) {
  .ti-bottom-wrap {
    bottom: 22px !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row {
    min-height: 94px !important;
    height: 94px !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row,
  .ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
    min-height: 94px !important;
    height: 94px !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row button,
  .ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn {
    height: 72px !important;
    min-height: 72px !important;
  }
}

/* v174: match the user's wider selected tint panel layout.
   Keep the same dark glass / neon blue theme, but use a wide two-column panel:
   left summary block with logo + tint type + quote button, right 2x2 stat cards. */
.ti-selected-film-panel {
  width: 540px !important;
  min-height: 0 !important;
  padding: 12px 14px !important;
}

.ti-selected-film-panel .ti-film-panel-kicker {
  margin-bottom: 8px !important;
}

.ti-selected-film-panel .ti-film-panel-layout {
  display: grid !important;
  grid-template-columns: minmax(170px, 188px) minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: stretch !important;
}

.ti-selected-film-panel .ti-film-panel-summary {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

.ti-selected-film-panel .ti-film-panel-head,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
  display: grid !important;
  grid-template-columns: minmax(92px, 112px) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 !important;
  border-bottom: 0 !important;
}

.ti-selected-film-panel .ti-film-panel-logo-wrap,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
  min-height: 52px !important;
  height: 52px !important;
  padding: 6px 8px !important;
}

.ti-selected-film-panel .ti-film-panel-brand-logo,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-brand-logo {
  max-width: 104px !important;
  max-height: 34px !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap {
  align-self: center !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap em {
  margin-bottom: 4px !important;
  font-size: 10px !important;
  letter-spacing: .8px !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap strong,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
  font-size: 16px !important;
  line-height: 1.04 !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap span,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap span {
  font-size: 10.5px !important;
  margin-top: 4px !important;
}

.ti-selected-film-panel .ti-film-panel-vlt {
  display: none !important;
}

.ti-selected-film-panel .ti-film-panel-quote {
  width: 100% !important;
  min-height: 30px !important;
  height: 30px !important;
  margin-top: 10px !important;
  font-size: 10px !important;
  letter-spacing: .7px !important;
  border-radius: 7px !important;
}

.ti-selected-film-panel .ti-film-panel-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 0 !important;
  align-content: start !important;
}

.ti-selected-film-panel .ti-film-panel-item {
  min-height: 50px !important;
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  padding: 7px 10px !important;
}

.ti-selected-film-panel .ti-film-panel-icon {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
}

.ti-selected-film-panel .ti-film-panel-item em {
  display: block !important;
  font-size: 10px !important;
  line-height: 1.04 !important;
  letter-spacing: .58px !important;
  white-space: normal !important;
}

.ti-selected-film-panel .ti-film-panel-item strong {
  display: block !important;
  font-size: 13px !important;
  line-height: 1.08 !important;
  margin-top: 3px !important;
}

.ti-selected-film-panel .ti-film-panel-item-percentages strong {
  font-size: 11.5px !important;
  line-height: 1.1 !important;
  letter-spacing: .18px !important;
}

@media (max-width: 1540px) {
  .ti-selected-film-panel {
    width: 510px !important;
  }

  .ti-selected-film-panel .ti-film-panel-layout {
    grid-template-columns: minmax(162px, 180px) minmax(0, 1fr) !important;
    gap: 10px !important;
  }
}

@media (max-width: 1400px) {
  .ti-selected-film-panel {
    width: 470px !important;
    padding: 11px 12px !important;
  }

  .ti-selected-film-panel .ti-film-panel-layout {
    grid-template-columns: minmax(150px, 168px) minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item {
    min-height: 48px !important;
    padding: 7px 8px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item em {
    font-size: 9.2px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item strong {
    font-size: 12px !important;
  }
}

/* v174: widen the Selected Tint panel more like the user's example.
   Keep the same v149 structure, but give both the summary section and the 2x2 info grid more room. */
.ti-selected-film-panel {
  width: 650px !important;
  max-width: calc(100vw - 330px) !important;
  padding: 12px 15px !important;
}

.ti-selected-film-panel .ti-film-panel-layout {
  grid-template-columns: minmax(205px, 228px) minmax(0, 1fr) !important;
  gap: 14px !important;
}

.ti-selected-film-panel .ti-film-panel-head,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
  grid-template-columns: minmax(100px, 118px) minmax(0, 1fr) !important;
  gap: 12px !important;
}

.ti-selected-film-panel .ti-film-panel-logo-wrap,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
  min-height: 54px !important;
  height: 54px !important;
}

.ti-selected-film-panel .ti-film-panel-brand-logo,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-brand-logo {
  max-width: 110px !important;
  max-height: 36px !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap strong,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
  font-size: 17px !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap span,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap span {
  font-size: 11px !important;
}

.ti-selected-film-panel .ti-film-panel-quote {
  min-height: 33px !important;
  height: 33px !important;
  margin-top: 11px !important;
  font-size: 10.25px !important;
}

.ti-selected-film-panel .ti-film-panel-list {
  gap: 9px !important;
}

.ti-selected-film-panel .ti-film-panel-item {
  min-height: 54px !important;
  grid-template-columns: 36px minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 8px 11px !important;
}

.ti-selected-film-panel .ti-film-panel-icon {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
}

.ti-selected-film-panel .ti-film-panel-item em {
  font-size: 10.2px !important;
  letter-spacing: .62px !important;
}

.ti-selected-film-panel .ti-film-panel-item strong {
  font-size: 13.5px !important;
}

.ti-selected-film-panel .ti-film-panel-item-percentages strong {
  font-size: 12px !important;
}

@media (max-width: 1540px) {
  .ti-selected-film-panel {
    width: 620px !important;
    max-width: calc(100vw - 300px) !important;
  }

  .ti-selected-film-panel .ti-film-panel-layout {
    grid-template-columns: minmax(195px, 215px) minmax(0, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 1400px) {
  .ti-selected-film-panel {
    width: 570px !important;
    max-width: calc(100vw - 250px) !important;
    padding: 11px 13px !important;
  }

  .ti-selected-film-panel .ti-film-panel-layout {
    grid-template-columns: minmax(178px, 198px) minmax(0, 1fr) !important;
    gap: 11px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item em {
    font-size: 9.7px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item strong {
    font-size: 12.6px !important;
  }
}

/* v174: tune the Selected Tint panel to more closely match the user's target layout.
   Goals:
   - wider top-right panel
   - clear split between left summary block and right 2x2 spec cards
   - larger logo + tint type area
   - full-width quote button under the left summary block
   - cards roomy enough that labels/values read cleanly
*/
.ti-selected-film-panel {
  width: 760px !important;
  max-width: calc(100vw - 300px) !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.ti-selected-film-panel .ti-film-panel-kicker {
  padding: 12px 18px 0 !important;
  margin-bottom: 10px !important;
}

.ti-selected-film-panel .ti-film-panel-layout {
  display: grid !important;
  grid-template-columns: minmax(285px, 305px) minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.ti-selected-film-panel .ti-film-panel-summary {
  min-width: 0 !important;
  padding: 14px 16px 16px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(9, 14, 21, .58) !important;
  border-right: 1px solid rgba(114, 212, 255, .14) !important;
}

.ti-selected-film-panel .ti-film-panel-head,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
  display: grid !important;
  grid-template-columns: 136px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
  padding: 0 !important;
  border-bottom: 0 !important;
}

.ti-selected-film-panel .ti-film-panel-logo-wrap,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
  width: 136px !important;
  min-width: 136px !important;
  height: 82px !important;
  min-height: 82px !important;
  padding: 8px 10px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(114, 212, 255, .14) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    rgba(0, 0, 0, .56) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 14px rgba(32,231,255,.05) !important;
}

.ti-selected-film-panel .ti-film-panel-brand-logo,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-brand-logo {
  max-width: 114px !important;
  max-height: 42px !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-width: 0 !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap em,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap em {
  margin-bottom: 7px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 1.15px !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap strong,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
  font-size: 28px !important;
  line-height: .98 !important;
  letter-spacing: -.3px !important;
  max-width: 100% !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap span,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap span {
  margin-top: 7px !important;
  font-size: 12px !important;
  line-height: 1.05 !important;
  color: rgba(186,231,248,.82) !important;
}

.ti-selected-film-panel .ti-film-panel-vlt {
  display: none !important;
}

.ti-selected-film-panel .ti-film-panel-quote {
  width: 100% !important;
  min-height: 40px !important;
  height: 40px !important;
  margin-top: 16px !important;
  border-radius: 12px !important;
  font-size: 11px !important;
  font-weight: 1000 !important;
  letter-spacing: 1px !important;
}

.ti-selected-film-panel .ti-film-panel-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px 16px !important;
  margin: 0 !important;
  padding: 14px 16px 16px !important;
  align-content: start !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.008)),
    rgba(6, 10, 17, .26) !important;
}

.ti-selected-film-panel .ti-film-panel-item {
  min-height: 100px !important;
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(114, 212, 255, .12) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.034), rgba(255,255,255,.008)),
    rgba(6, 12, 18, .72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 0 16px rgba(32,231,255,.035) !important;
}

.ti-selected-film-panel .ti-film-panel-icon {
  width: 54px !important;
  min-width: 54px !important;
  height: 54px !important;
  border-radius: 0 !important;
}

.ti-selected-film-panel .ti-film-panel-icon::before {
  font-size: 22px !important;
}

.ti-selected-film-panel .ti-film-panel-item em {
  display: block !important;
  font-size: 12px !important;
  line-height: 1.04 !important;
  letter-spacing: .95px !important;
  white-space: normal !important;
  text-transform: uppercase !important;
}

.ti-selected-film-panel .ti-film-panel-item strong {
  display: block !important;
  margin-top: 8px !important;
  font-size: 24px !important;
  line-height: .98 !important;
  letter-spacing: -.2px !important;
}

.ti-selected-film-panel .ti-film-panel-item-percentages strong {
  font-size: 18px !important;
  line-height: 1.08 !important;
  letter-spacing: .15px !important;
}

@media (max-width: 1680px) {
  .ti-selected-film-panel {
    width: 700px !important;
    max-width: calc(100vw - 270px) !important;
  }

  .ti-selected-film-panel .ti-film-panel-layout {
    grid-template-columns: minmax(260px, 280px) minmax(0, 1fr) !important;
  }

  .ti-selected-film-panel .ti-film-panel-head,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
    grid-template-columns: 124px minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .ti-selected-film-panel .ti-film-panel-logo-wrap,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
    width: 124px !important;
    min-width: 124px !important;
    height: 76px !important;
    min-height: 76px !important;
  }

  .ti-selected-film-panel .ti-film-panel-title-wrap strong,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
    font-size: 24px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item {
    min-height: 92px !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    padding: 12px 14px !important;
  }

  .ti-selected-film-panel .ti-film-panel-icon {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item em {
    font-size: 11px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item strong {
    font-size: 20px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item-percentages strong {
    font-size: 16px !important;
  }
}

@media (max-width: 1500px) {
  .ti-selected-film-panel {
    width: 620px !important;
    max-width: calc(100vw - 235px) !important;
  }

  .ti-selected-film-panel .ti-film-panel-layout {
    grid-template-columns: minmax(225px, 245px) minmax(0, 1fr) !important;
  }

  .ti-selected-film-panel .ti-film-panel-summary {
    padding: 12px 14px 14px !important;
  }

  .ti-selected-film-panel .ti-film-panel-list {
    padding: 12px 14px 14px !important;
    gap: 12px !important;
  }

  .ti-selected-film-panel .ti-film-panel-head,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
    grid-template-columns: 108px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .ti-selected-film-panel .ti-film-panel-logo-wrap,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
    width: 108px !important;
    min-width: 108px !important;
    height: 68px !important;
    min-height: 68px !important;
  }

  .ti-selected-film-panel .ti-film-panel-title-wrap em,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap em {
    font-size: 11px !important;
    margin-bottom: 5px !important;
  }

  .ti-selected-film-panel .ti-film-panel-title-wrap strong,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
    font-size: 20px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item {
    min-height: 82px !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 11px !important;
    padding: 11px 12px !important;
  }

  .ti-selected-film-panel .ti-film-panel-icon {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item em {
    font-size: 10px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item strong {
    font-size: 17px !important;
    margin-top: 6px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item-percentages strong {
    font-size: 14px !important;
  }
}

/* v174: make Selected Tint panel flatter and wider.
   User note: v151 was too bunched and too fat vertically.
   This keeps the same layout idea, but compresses height and gives the cards more horizontal room. */
.ti-selected-film-panel {
  width: 835px !important;
  max-width: calc(100vw - 285px) !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.ti-selected-film-panel .ti-film-panel-kicker {
  padding: 11px 18px 0 !important;
  margin-bottom: 8px !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

.ti-selected-film-panel .ti-film-panel-layout {
  display: grid !important;
  grid-template-columns: minmax(305px, 330px) minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.ti-selected-film-panel .ti-film-panel-summary {
  padding: 10px 15px 12px !important;
  border-right: 1px solid rgba(114, 212, 255, .14) !important;
}

.ti-selected-film-panel .ti-film-panel-head,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
  grid-template-columns: 122px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 0 !important;
  border-bottom: 0 !important;
}

.ti-selected-film-panel .ti-film-panel-logo-wrap,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
  width: 122px !important;
  min-width: 122px !important;
  height: 62px !important;
  min-height: 62px !important;
  padding: 7px 9px !important;
  border-radius: 10px !important;
}

.ti-selected-film-panel .ti-film-panel-brand-logo,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-brand-logo {
  max-width: 104px !important;
  max-height: 36px !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap em,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap em {
  margin-bottom: 5px !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap strong,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
  font-size: 22px !important;
  line-height: 1 !important;
  letter-spacing: -.2px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.ti-selected-film-panel .ti-film-panel-title-wrap span,
.ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap span {
  margin-top: 5px !important;
  font-size: 11px !important;
  line-height: 1.05 !important;
}

.ti-selected-film-panel .ti-film-panel-quote {
  min-height: 34px !important;
  height: 34px !important;
  margin-top: 11px !important;
  border-radius: 10px !important;
  font-size: 10.5px !important;
  letter-spacing: .9px !important;
}

.ti-selected-film-panel .ti-film-panel-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px 10px !important;
  margin: 0 !important;
  padding: 10px 12px 12px !important;
  align-content: start !important;
}

.ti-selected-film-panel .ti-film-panel-item {
  min-height: 66px !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  gap: 11px !important;
  align-items: center !important;
  padding: 9px 12px !important;
  border-radius: 11px !important;
}

.ti-selected-film-panel .ti-film-panel-icon {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
}

.ti-selected-film-panel .ti-film-panel-icon::before {
  font-size: 18px !important;
}

.ti-selected-film-panel .ti-film-panel-item em {
  font-size: 10.5px !important;
  line-height: 1.05 !important;
  letter-spacing: .72px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.ti-selected-film-panel .ti-film-panel-item strong {
  margin-top: 5px !important;
  font-size: 18px !important;
  line-height: 1 !important;
  letter-spacing: -.12px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.ti-selected-film-panel .ti-film-panel-item-percentages strong {
  font-size: 15px !important;
  line-height: 1.05 !important;
  letter-spacing: .08px !important;
}

@media (max-width: 1680px) {
  .ti-selected-film-panel {
    width: 770px !important;
    max-width: calc(100vw - 260px) !important;
  }

  .ti-selected-film-panel .ti-film-panel-layout {
    grid-template-columns: minmax(280px, 305px) minmax(0, 1fr) !important;
  }

  .ti-selected-film-panel .ti-film-panel-title-wrap strong,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
    font-size: 20px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item {
    min-height: 64px !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    padding: 8px 11px !important;
  }

  .ti-selected-film-panel .ti-film-panel-icon {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 1500px) {
  .ti-selected-film-panel {
    width: 690px !important;
    max-width: calc(100vw - 230px) !important;
  }

  .ti-selected-film-panel .ti-film-panel-layout {
    grid-template-columns: minmax(245px, 268px) minmax(0, 1fr) !important;
  }

  .ti-selected-film-panel .ti-film-panel-head,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-head {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .ti-selected-film-panel .ti-film-panel-logo-wrap,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-logo-wrap {
    width: 104px !important;
    min-width: 104px !important;
    height: 58px !important;
    min-height: 58px !important;
  }

  .ti-selected-film-panel .ti-film-panel-title-wrap strong,
  .ti-selected-film-panel.has-brand-logo .ti-film-panel-title-wrap strong {
    font-size: 18px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item {
    min-height: 60px !important;
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  .ti-selected-film-panel .ti-film-panel-icon {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item em {
    font-size: 9.5px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item strong {
    font-size: 15.5px !important;
  }

  .ti-selected-film-panel .ti-film-panel-item-percentages strong {
    font-size: 13px !important;
  }
}


/* v174: user requested the Selected Tint panel 20% smaller overall.
   Use a uniform visual scale so every part shrinks together while keeping the current v152 layout. */
.ti-selected-film-panel {
  transform: scale(.8) !important;
  transform-origin: top right !important;
}

body.ti-interior-mode .ti-selected-film-panel {
  transform: scale(.8) !important;
  transform-origin: top right !important;
}

/* v174: make Reset Tint stand out as a pea-green action button with a reset icon above the text. */
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn,
.ti-zone-row .ti-clear-btn {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  color: #050806 !important;
  background:
    linear-gradient(180deg, rgba(218, 255, 110, .98), rgba(126, 213, 43, .96)) !important;
  border-color: rgba(180, 255, 72, .88) !important;
  text-shadow: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.42),
    inset 0 -1px 0 rgba(0,0,0,.18),
    0 0 16px rgba(154, 255, 49, .22) !important;
  font-weight: 1000 !important;
  letter-spacing: .45px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn::before,
.ti-zone-row .ti-clear-btn::before {
  content: '↻' !important;
  display: block !important;
  color: #050806 !important;
  font-size: 24px !important;
  line-height: .9 !important;
  font-weight: 1000 !important;
  text-shadow: none !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn:hover,
.ti-zone-row .ti-clear-btn:hover {
  color: #020402 !important;
  background:
    linear-gradient(180deg, rgba(233, 255, 123, 1), rgba(143, 231, 47, 1)) !important;
  border-color: rgba(209, 255, 88, .98) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.52),
    inset 0 -1px 0 rgba(0,0,0,.18),
    0 0 20px rgba(154, 255, 49, .32) !important;
}

/* v174: make the Reset Tint icon slightly bigger so the label baseline lines up better with the other zone buttons. */
.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn,
.ti-zone-row .ti-clear-btn {
  gap: 2px !important;
  padding-top: 5px !important;
  padding-bottom: 8px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row .ti-clear-btn::before,
.ti-zone-row .ti-clear-btn::before {
  font-size: 31px !important;
  line-height: .78 !important;
  margin-bottom: 2px !important;
  transform: translateY(-1px) !important;
}


/* v174: Interior-only placement pass.
   Move the back-to-exterior control from the top-right to the top-center,
   lined up with the rearview mirror area and just above it. */
body.ti-interior-mode .ti-angle-row {
  top: 64px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  z-index: 14 !important;
}

body.ti-interior-mode .ti-angle-card {
  min-width: 186px !important;
  max-width: 220px !important;
  padding: 8px 10px 10px !important;
}

body.ti-interior-mode .ti-angle-buttons {
  justify-content: center !important;
}

body.ti-interior-mode .ti-exit-interior-angle {
  min-width: 154px !important;
}

@media (max-width: 1280px) {
  body.ti-interior-mode .ti-angle-row {
    top: 58px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}

/* v174: make the Interior exit button taller and switch tint mask color from purple/pink to black. */
body.ti-interior-mode .ti-exit-interior-angle {
  min-height: 52px !important;
  height: 52px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

body.ti-interior-mode .ti-angle-card {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* The mask PNGs are pink/purple source files; force them to render as black tint. */
.ti-dynamic-mask {
  filter: brightness(0) saturate(100%) !important;
  mix-blend-mode: multiply !important;
}

/* v174: Interior eyebrow style picker.
   Shows Curved / Straight only in Interior mode when the Eyebrow zone is selected. */
.ti-zone-shade-row {
  position: relative !important;
}

.ti-eyebrow-style-panel {
  display: none !important;
  position: absolute !important;
  left: 312px !important;
  bottom: calc(100% + 8px) !important;
  z-index: 35 !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 7px 9px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(114, 212, 255, .22) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.014)),
    rgba(3, 7, 12, .92) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 30px rgba(0,0,0,.34),
    0 0 18px rgba(32,231,255,.10) !important;
  backdrop-filter: blur(10px) !important;
}

body.ti-interior-mode .ti-eyebrow-style-panel.is-visible {
  display: inline-flex !important;
}

.ti-eyebrow-style-label {
  color: var(--ti-blue, #00b7ff) !important;
  font-size: 10px !important;
  font-weight: 1000 !important;
  letter-spacing: .95px !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 8px rgba(0,183,255,.28) !important;
  white-space: nowrap !important;
}

.ti-eyebrow-style-panel button {
  min-width: 72px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 11px !important;
  border-radius: 9px !important;
  color: #dff6ff !important;
  border: 1px solid rgba(114, 212, 255, .18) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.040), rgba(255,255,255,.010)),
    rgba(6, 12, 18, .95) !important;
  font-size: 11px !important;
  font-weight: 1000 !important;
  letter-spacing: .35px !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055) !important;
}

.ti-eyebrow-style-panel button.active,
.ti-eyebrow-style-panel button:hover {
  color: #fff !important;
  border-color: rgba(0,183,255,.78) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 0 16px rgba(0,183,255,.22) !important;
}

@media (max-width: 1280px) {
  .ti-eyebrow-style-panel {
    left: 246px !important;
  }
}

/* v174: move Interior Eyebrow Style control into the lower tint row.
   It now sits between Reset Tint and the Percentages row instead of floating above the brand/type rows. */
.ti-zone-shade-row .ti-zone-row {
  order: 1 !important;
}

.ti-zone-shade-row .ti-eyebrow-style-panel {
  order: 2 !important;
}

.ti-zone-shade-row .ti-bottom-bar {
  order: 3 !important;
}

.ti-eyebrow-style-panel {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: 3 !important;
  flex: 0 0 auto !important;
  align-self: center !important;
  height: 66px !important;
  min-height: 66px !important;
  padding: 7px 9px !important;
  margin: 0 !important;
  border-radius: 12px !important;
}

body.ti-interior-mode .ti-eyebrow-style-panel.is-visible {
  display: inline-flex !important;
}

.ti-eyebrow-style-label {
  font-size: 9.5px !important;
  line-height: 1.1 !important;
  max-width: 68px !important;
  white-space: normal !important;
  text-align: center !important;
}

.ti-eyebrow-style-panel button {
  min-width: 68px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 10px !important;
}

@media (max-width: 1280px) {
  .ti-eyebrow-style-panel {
    left: auto !important;
  }

  .ti-eyebrow-style-label {
    max-width: 60px !important;
    font-size: 9px !important;
  }

  .ti-eyebrow-style-panel button {
    min-width: 62px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

/* v174: force the Interior Eyebrow Style control into the actual lower row.
   It is now a real item between Reset Tint and Percentages, not an overlay above the brand/type row. */
.ti-tint-controls-panel .ti-zone-shade-row {
  display: flex !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 9px !important;
  min-height: 98px !important;
  height: 98px !important;
  padding: 10px 0 0 !important;
  overflow: visible !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-zone-row {
  order: 1 !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: 88px !important;
  min-height: 88px !important;
  padding: 8px !important;
  margin: 0 !important;
  overflow: visible !important;
  border-right: 0 !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-panel {
  order: 2 !important;
  flex: 0 0 auto !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: 4 !important;
  align-self: center !important;
  width: auto !important;
  min-width: 244px !important;
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  margin: 0 !important;
  padding: 8px 10px !important;
  gap: 7px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

body.ti-interior-mode .ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-panel.is-visible {
  display: inline-flex !important;
}

body:not(.ti-interior-mode) .ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-panel,
.ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-panel:not(.is-visible) {
  display: none !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-panel .ti-eyebrow-style-label,
.ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-label {
  flex: 0 0 66px !important;
  max-width: 66px !important;
  text-align: center !important;
  font-size: 9.5px !important;
  line-height: 1.1 !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-panel button {
  flex: 0 0 auto !important;
  min-width: 68px !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 10px !important;
}

.ti-tint-controls-panel .ti-zone-shade-row .ti-bottom-bar {
  order: 3 !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: 88px !important;
  min-height: 88px !important;
  padding: 8px !important;
  margin: 0 !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
}

@media (max-width: 1400px) {
  .ti-tint-controls-panel .ti-zone-shade-row {
    gap: 7px !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-panel {
    min-width: 216px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-panel .ti-eyebrow-style-label,
  .ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-label {
    flex-basis: 58px !important;
    max-width: 58px !important;
    font-size: 9px !important;
  }

  .ti-tint-controls-panel .ti-zone-shade-row .ti-eyebrow-style-panel button {
    min-width: 62px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
