.lsq-vertical-tabs {
  --lsq-vtabs-bg-wrap: transparent;
  --lsq-vtabs-gap: 4px;
  --lsq-vtabs-radius-outer: 8px;
  --lsq-vtabs-radius-btn: 6px;
  --lsq-vtabs-active-bg: #ebf1ff;
  --lsq-vtabs-active-border: #c2d6ff;
  --lsq-vtabs-active-text: #1463ff;
  --lsq-vtabs-inactive-text: #293442;
  --lsq-vtabs-row-h: 48px;
  --lsq-vtabs-font: inherit;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: var(--lsq-vtabs-gap);
  border-radius: var(--lsq-vtabs-radius-outer);
  background: var(--lsq-vtabs-bg-wrap);
}

.lsq-vertical-tabs *,
.lsq-vertical-tabs *::before,
.lsq-vertical-tabs *::after {
  box-sizing: border-box;
}

.lsq-vertical-tabs__select-wrap {
  display: none;
  width: 100%;
}

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

.lsq-vertical-tabs__select {
  width: 100%;
  min-height: 48px;
  padding: 10px 36px 10px 14px;
  font-family: var(--lsq-vtabs-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--lsq-vtabs-inactive-text);
  background-color: #fff;
  border: 1px solid var(--lsq-vtabs-active-border);
  border-radius: var(--lsq-vtabs-radius-btn);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23293442' stroke-linecap='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.lsq-vertical-tabs__nav {
  width: 100%;
}

.lsq-vertical-tabs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--lsq-vtabs-gap);
}

.lsq-vertical-tabs__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: var(--lsq-vtabs-row-h);
  width: 100%;
  padding: 8px 24px 8px 16px;
  margin: 0;
  font-family: var(--lsq-vtabs-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  color: var(--lsq-vtabs-inactive-text);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--lsq-vtabs-radius-btn);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lsq-vertical-tabs__btn:hover {
  color: var(--lsq-vtabs-active-text);
  background: rgba(235, 241, 255, 0.45);
}

.lsq-vertical-tabs__btn--active {
  color: var(--lsq-vtabs-active-text) !important;
  background: var(--lsq-vtabs-active-bg) !important;
  border-color: var(--lsq-vtabs-active-border) !important;
}

.lsq-vertical-tabs__btn--active:hover {
  background: var(--lsq-vtabs-active-bg);
  color: var(--lsq-vtabs-active-text);
}

.lsq-vertical-tabs__icon {
  display: flex;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lsq-vertical-tabs__icon-img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.lsq-vertical-tabs__label {
  white-space: nowrap;
}
li.lsq-vertical-tabs__item {
  margin: 0;
  list-style-type: none;
}
.lsq-vertical-tabs {
  padding: 0;
}
.lsq-vertical-tabs__btn img {
  filter: brightness(0.1);
}
.lsq-vertical-tabs__btn--active img {
  filter: invert(32%) sepia(97%) saturate(7481%) hue-rotate(214deg) brightness(97%) contrast(101%) !important;
}
@media (max-width: 767px) {
  .lsq-vertical-tabs__nav {
    display: none;
  }

  .lsq-vertical-tabs__select-wrap {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 0 16px;
    margin: 0 0 4px;
    border-bottom: 1px solid #e8ecf0;
  }

  /* Visible label above control (desktop keeps visually hidden label for a11y) */
  .lsq-vertical-tabs__select-label {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 0 10px;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
    border: 0;
    font-family: var(--lsq-vtabs-font);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5b6b78;
    display: block;
  }

  /*
   * Mobile: iOS/Android paint native <select> chrome that CSS cannot restyle.
   * Styled .select-face is underneath; invisible native select captures taps (design reference).
   */
  .lsq-vertical-tabs__select-shell {
    position: relative;
    width: 100%;
    min-height: 50px;
  }

  .lsq-vertical-tabs__select-face {
    pointer-events: none;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 13px 16px 13px 18px;
    font-family: var(--lsq-vtabs-font);
    background-color: #ffffff;
    border: 1px solid #e1e8ef;
    border-radius: 10px;
    box-shadow:
      0 2px 10px rgba(15, 23, 42, 0.06),
      0 1px 3px rgba(15, 23, 42, 0.04);
  }

  .lsq-vertical-tabs__select-value {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #293442;
  }

  .lsq-vertical-tabs__select-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }

  .lsq-vertical-tabs__select-chevron svg {
    display: block;
  }

  .lsq-vertical-tabs__select.lsq-vertical-tabs__select--native {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 50px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    color: transparent;
    background: transparent !important;
    background-image: none !important;
    border: 0;
    border-radius: 10px;
    opacity: 0.0001;
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
  }

  .lsq-vertical-tabs__select-shell:focus-within .lsq-vertical-tabs__select-face {
    border-color: #b8c9e8;
    box-shadow:
      0 2px 10px rgba(15, 23, 42, 0.06),
      0 1px 3px rgba(15, 23, 42, 0.04),
      0 0 0 3px rgba(20, 99, 255, 0.18);
  }
}
