.slc-la {
  --slc-la-primary: rgb(var(--color-primary, 242 100 37));
  --slc-la-dark: rgb(var(--color-secondary, 19 12 12));
  --slc-la-text: rgb(var(--color-text, 70 70 70));
  --slc-la-muted: rgb(var(--color-text-muted, 107 114 128));
  --slc-la-border: #d8d8d8;
  --slc-la-bg: #fff;
  --slc-la-radius: var(--radius-lg, 8px);
  --slc-la-shadow: 0 20px 55px rgb(0 0 0 / 22%);

  color: var(--slc-la-text);
  font-family: var(--font-family-body, "Work Sans", system-ui, sans-serif);
  font-size: 16px;
  line-height: 1.5;
}

.slc-la [hidden] {
  display: none !important;
}

.slc-la *,
.slc-la *::before,
.slc-la *::after {
  box-sizing: border-box;
}

.slc-la__launcher {
  align-items: center;
  background: var(--slc-la-primary);
  border: 0;
  border-radius: 999px;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 8px 28px rgb(0 0 0 / 24%);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: 700 15px/1.2 var(--font-family-body, "Work Sans", system-ui, sans-serif);
  gap: 0.625rem;
  min-height: 52px;
  padding: 0.8rem 1.1rem;
  position: fixed;
  right: 1.5rem;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  z-index: 1001;
}

.slc-la__launcher:hover {
  background: var(--slc-la-dark);
  box-shadow: 0 10px 32px rgb(0 0 0 / 30%);
  transform: translateY(-2px);
}

.slc-la__launcher svg {
  fill: none;
  height: 24px;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 24px;
}

.slc-la__backdrop {
  background: rgb(19 12 12 / 46%);
  inset: 0;
  position: fixed;
  z-index: 1002;
}

.slc-la__panel {
  background: var(--slc-la-bg);
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 14px;
  bottom: 5.75rem;
  box-shadow: var(--slc-la-shadow);
  display: flex;
  flex-direction: column;
  max-height: min(720px, calc(100vh - 8rem));
  max-width: calc(100vw - 2rem);
  overflow: hidden;
  position: fixed;
  right: 1.5rem;
  width: 420px;
  z-index: 1003;
}

.slc-la__header {
  align-items: flex-start;
  background: var(--slc-la-dark);
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.1rem 1.25rem 1rem;
}

.slc-la__header h2,
.slc-la__screen h3 {
  font-family: var(--font-family-heading, "Oswald", system-ui, sans-serif);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.slc-la__header h2 {
  color: #fff;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.slc-la__eyebrow {
  color: var(--slc-la-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
}

.slc-la__close {
  align-items: center;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 44px;
  font: 400 28px/1 sans-serif;
  height: 44px;
  justify-content: center;
  padding: 0 0 3px;
  width: 44px;
}

.slc-la__close:hover {
  background: rgb(255 255 255 / 12%);
}

.slc-la__description {
  background: #f7f7f7;
  border-bottom: 1px solid var(--slc-la-border);
  color: var(--slc-la-text);
  font-size: 0.86rem;
  margin: 0;
  padding: 0.75rem 1.25rem;
}

.slc-la__progress {
  background: #ececec;
  flex: 0 0 4px;
  height: 4px;
  width: 100%;
}

.slc-la__progress span {
  background: var(--slc-la-primary);
  display: block;
  height: 100%;
  transition: width 220ms ease;
  width: 0;
}

.slc-la__body {
  flex: 1 1 auto;
  min-height: 230px;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 1.25rem;
}

.slc-la__screen h3 {
  color: var(--slc-la-dark);
  font-size: 1.38rem;
  margin-bottom: 1rem;
}

.slc-la__screen p {
  margin: 0 0 1rem;
}

.slc-la__step {
  color: var(--slc-la-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem !important;
  text-transform: uppercase;
}

.slc-la__intent-grid,
.slc-la__choices,
.slc-la__units {
  display: grid;
  gap: 0.65rem;
}

.slc-la__intent,
.slc-la__choice,
.slc-la__unit {
  background: #fff;
  border: 1px solid var(--slc-la-border);
  border-radius: var(--slc-la-radius);
  color: var(--slc-la-dark);
  cursor: pointer;
  font: 600 0.95rem/1.35 var(--font-family-body, "Work Sans", system-ui, sans-serif);
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  text-align: left;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  width: 100%;
}

.slc-la__intent:hover,
.slc-la__choice:hover,
.slc-la__unit:hover,
.slc-la__choice.is-selected {
  border-color: var(--slc-la-primary);
  box-shadow: 0 3px 12px rgb(242 100 37 / 14%);
  transform: translateY(-1px);
}

.slc-la__intent {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.slc-la__intent span {
  color: var(--slc-la-primary);
  font-size: 0.68rem;
  font-weight: 800;
  margin-left: 0.5rem;
  text-align: right;
  text-transform: uppercase;
}

.slc-la__intent.is-suggested {
  border-color: var(--slc-la-primary);
  border-width: 2px;
}

.slc-la__unit {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.slc-la__unit span {
  color: var(--slc-la-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.slc-la__select-wrap {
  display: block;
  margin-bottom: 0.8rem;
}

.slc-la select,
.slc-la input,
.slc-la textarea {
  background: #fff;
  border: 1px solid #b8b8b8;
  border-radius: 6px;
  color: var(--slc-la-dark);
  font: 400 16px/1.35 var(--font-family-body, "Work Sans", system-ui, sans-serif);
  min-height: 46px;
  padding: 0.65rem 0.7rem;
  width: 100%;
}

.slc-la textarea {
  min-height: 88px;
  resize: vertical;
}

.slc-la__primary,
.slc-la__secondary {
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: 700 0.93rem/1.2 var(--font-family-body, "Work Sans", system-ui, sans-serif);
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  text-align: center;
  text-decoration: none;
}

.slc-la__primary {
  background: var(--slc-la-primary);
  border: 1px solid var(--slc-la-primary);
  color: #fff;
}

.slc-la__primary:hover {
  background: var(--slc-la-dark);
  border-color: var(--slc-la-dark);
  color: #fff;
}

.slc-la__primary:disabled {
  cursor: wait;
  opacity: 0.65;
}

.slc-la__secondary {
  background: #fff;
  border: 1px solid var(--slc-la-dark);
  color: var(--slc-la-dark);
}

.slc-la__secondary:hover {
  background: #f3f3f3;
  color: var(--slc-la-dark);
}

.slc-la__text-button {
  background: transparent;
  border: 0;
  color: var(--slc-la-text);
  cursor: pointer;
  font: 600 0.82rem/1.2 var(--font-family-body, "Work Sans", system-ui, sans-serif);
  min-height: 44px;
  padding: 0.5rem 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.slc-la__back {
  display: block;
  margin-top: 0.75rem;
}

.slc-la__actions {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

.slc-la__helper {
  color: var(--slc-la-muted);
  font-size: 0.86rem;
}

.slc-la__form,
.slc-la__form-grid {
  display: grid;
  gap: 0.8rem;
}

.slc-la__form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slc-la__form label {
  color: var(--slc-la-dark);
  display: grid;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.3rem;
}

.slc-la__referral {
  border-bottom: 1px solid var(--slc-la-border);
  border-top: 1px solid var(--slc-la-border);
  padding: 0.75rem 0;
}

.slc-la__referral summary {
  color: var(--slc-la-dark);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 44px;
  padding-top: 0.65rem;
}

.slc-la__referral[open] summary {
  margin-bottom: 0.75rem;
}

.slc-la__consent {
  align-items: flex-start;
  display: flex !important;
  font-size: 0.74rem !important;
  font-weight: 500 !important;
  gap: 0.55rem !important;
}

.slc-la__consent input {
  flex: 0 0 20px;
  height: 20px;
  margin-top: 2px;
  min-height: 20px;
  padding: 0;
  width: 20px;
}

.slc-la__consent a {
  color: var(--slc-la-dark);
  text-decoration: underline;
}

.slc-la__submit {
  width: 100%;
}

.slc-la__hp {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.slc-la__status {
  color: #9a3412;
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 650;
  margin: 0;
  min-height: 0;
  padding: 0 1.25rem;
}

.slc-la__status:not(:empty) {
  padding-bottom: 0.8rem;
}

.slc-la__footer {
  align-items: center;
  background: #f7f7f7;
  border-top: 1px solid var(--slc-la-border);
  display: flex;
  flex: 0 0 auto;
  gap: 1rem;
  justify-content: space-between;
  min-height: 52px;
  padding: 0.45rem 1.25rem;
}

.slc-la__footer a {
  color: var(--slc-la-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.slc-la__result {
  padding: 0.5rem 0;
}

.slc-la__success h3 {
  color: #19672c;
}

.slc-la__noscript {
  bottom: 1rem;
  position: fixed;
  right: 1rem;
  z-index: 1001;
}

.slc-la .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.slc-la button:focus-visible,
.slc-la a:focus-visible,
.slc-la input:focus-visible,
.slc-la select:focus-visible,
.slc-la textarea:focus-visible,
.slc-la summary:focus-visible {
  outline: 3px solid var(--slc-la-primary);
  outline-offset: 3px;
}

body:has(.slc-mobile-cta) .slc-la__launcher {
  bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
}

@media (width <= 900px) {
  body.slc-la-open {
    overflow: hidden;
  }

  /* Icon-only circle on mobile — the text pill crowds the sticky CTA bar. */
  .slc-la__launcher {
    border-radius: 50%;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    height: 56px;
    justify-content: center;
    min-height: 56px;
    padding: 0;
    right: 1rem;
    width: 56px;
  }

  /* Keep the label in the accessibility tree for the button's name. */
  .slc-la__launcher span {
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
  }

  .slc-la__launcher svg {
    height: 26px;
    width: 26px;
  }

  body:has(.slc-mobile-cta) .slc-la__launcher {
    bottom: calc(5.15rem + env(safe-area-inset-bottom, 0px));
  }

  .slc-la__panel {
    border: 0;
    border-radius: 0;
    inset: 0;
    max-height: none;
    max-width: none;
    width: 100%;
  }

  body.admin-bar .slc-la__panel {
    top: 46px;
  }

  .slc-la__body {
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (width <= 480px) {
  .slc-la__form-grid {
    grid-template-columns: 1fr;
  }

  .slc-la__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}

@media (width >= 901px) {
  body.admin-bar .slc-la__panel {
    max-height: min(720px, calc(100vh - 10rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .slc-la__launcher,
  .slc-la__progress span,
  .slc-la__intent,
  .slc-la__choice,
  .slc-la__unit {
    scroll-behavior: auto;
    transition: none;
  }
}
