﻿.jcc-chatbot {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  color: #303030;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

@media (min-width: 561px) {
  .jcc-chatbot.is-open .jcc-chatbot__button {
    display: none;
  }

  .jcc-chatbot .jcc-chatbot__panel {
    top: auto;
    bottom: 12px;
    width: min(720px, calc(100vw - 36px));
    height: min(900px, calc(100dvh - 24px));
    max-height: none;
  }

  .jcc-chatbot .jcc-chatbot__messages,
  .jcc-chatbot.has-lead-expanded .jcc-chatbot__messages {
    flex: 1 1 120px;
    min-height: 70px;
    max-height: none;
  }
}


.jcc-chatbot * {
  box-sizing: border-box;
}

.jcc-chatbot__button,
.jcc-chatbot__close,
.jcc-chatbot__starter,
.jcc-chatbot__submit,
.jcc-chatbot__lead-open,
.jcc-chatbot__lead-close,
.jcc-chatbot__lead-submit,
.jcc-chatbot__input,
.jcc-chatbot__lead-input {
  font: inherit;
}

.jcc-chatbot__button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #3f3f3f;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(32, 32, 32, 0.24);
}

.jcc-chatbot__button:hover,
.jcc-chatbot__button:focus-visible {
  background: #252525;
}

.jcc-chatbot__panel {
  position: fixed;
  right: 18px;
  bottom: 82px;
  width: min(390px, calc(100vw - 36px));
  max-height: min(640px, calc(100vh - 96px));
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(117, 117, 117, 0.72);
  border-radius: 8px;
  background: #f5f5f5;
  box-shadow: 0 18px 46px rgba(31, 31, 31, 0.22);
}

.jcc-chatbot.is-open .jcc-chatbot__panel {
  display: flex;
}

.jcc-chatbot__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  padding: 20px 22px 16px;
  background: #f5f5f5;
  color: #343434;
  border-bottom: 1px solid rgba(117, 117, 117, 0.32);
}

.jcc-chatbot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.jcc-chatbot__logo {
  width: 64px;
  height: 42px;
  flex: 0 0 64px;
  object-fit: contain;
  filter: brightness(0) saturate(0) opacity(0.62);
}

.jcc-chatbot__eyebrow {
  margin: 0 0 3px;
  color: #3f3f3f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.jcc-chatbot__title {
  margin: 0;
  color: #1d1d1d;
  font-family: 'Libre Caslon Display', 'Libre Caslon Text', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.jcc-chatbot__powered {
  display: inline-block;
  margin-top: 4px;
  color: #3f3f3f;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jcc-chatbot__close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(117, 117, 117, 0.58);
  border-radius: 999px;
  background: #fafafa;
  color: #2a2a2a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.jcc-chatbot__faq-label {
  flex: 0 0 auto;
  padding: 14px 22px 0;
  background: #f5f5f5;
  color: #3f3f3f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.jcc-chatbot__starters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px 22px 14px;
  background: #f5f5f5;
}

.jcc-chatbot.has-conversation .jcc-chatbot__faq-label,
.jcc-chatbot.has-conversation .jcc-chatbot__starters {
  display: none;
}

.jcc-chatbot__starter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(117, 117, 117, 0.5);
  border-radius: 8px;
  background: #fafafa;
  color: #202020;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.jcc-chatbot__starter:hover,
.jcc-chatbot__starter:focus-visible {
  border-color: #3f3f3f;
  background: #eeeeee;
}

.jcc-chatbot__starter-text {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.jcc-chatbot__messages {
  flex: 1 1 auto;
  min-height: 150px;
  max-height: 290px;
  overflow: auto;
  padding: 14px;
  background: #f6f5f2;
}

.jcc-chatbot:not(.has-conversation) .jcc-chatbot__messages {
  display: none;
}

.jcc-chatbot.has-lead-expanded .jcc-chatbot__messages {
  min-height: 150px;
  max-height: 240px;
}

.jcc-chatbot__message {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.jcc-chatbot__message--assistant {
  background: #fff;
  border: 1px solid #e2e2e2;
}

.jcc-chatbot__message--user {
  margin-left: auto;
  background: #ececec;
}

.jcc-chatbot__source-link {
  color: #202020;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.jcc-chatbot__source-link:hover,
.jcc-chatbot__source-link:focus-visible {
  color: #000;
  text-decoration-thickness: 2px;
}

.jcc-chatbot__lead {
  flex: 0 0 auto;
  max-height: 210px;
  overflow: auto;
  padding: 10px 14px 12px;
  border-top: 1px solid #e2e2e2;
  background: #f8f8f8;
}

.jcc-chatbot__lead[hidden],
.jcc-chatbot__lead-form[hidden] {
  display: none;
}

.jcc-chatbot__lead-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.jcc-chatbot__lead-title {
  margin: 0;
  color: #202020;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.jcc-chatbot__lead-copy {
  margin: 2px 0 0;
  color: #656565;
  font-size: 12px;
  line-height: 1.35;
}

.jcc-chatbot__lead-open {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid #3f3f3f;
  border-radius: 8px;
  background: #3f3f3f;
  color: #fff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.jcc-chatbot__lead-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.jcc-chatbot__lead:not(.is-expanded) .jcc-chatbot__lead-close,
.jcc-chatbot__lead.is-expanded .jcc-chatbot__lead-open {
  display: none;
}

.jcc-chatbot__lead-close {
  min-height: 34px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  color: #202020;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.jcc-chatbot__lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.jcc-chatbot__field,
.jcc-chatbot__consent {
  min-width: 0;
  color: #303030;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.jcc-chatbot__field--full,
.jcc-chatbot__consent,
.jcc-chatbot__lead-submit {
  grid-column: 1 / -1;
}

.jcc-chatbot__lead-input {
  display: block;
  width: 100%;
  min-height: 36px;
  margin-top: 4px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  color: #202020;
  padding: 8px 9px;
  font-size: 13px;
  line-height: 1.35;
}

textarea.jcc-chatbot__lead-input {
  min-height: 66px;
  max-height: 104px;
  resize: vertical;
}

.jcc-chatbot__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #656565;
  font-weight: 400;
}

.jcc-chatbot__consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
}

.jcc-chatbot__consent a,
.jcc-chatbot__privacy a {
  color: #202020;
  text-decoration: underline;
}

.jcc-chatbot__lead-submit {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: #202020;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.jcc-chatbot__lead-submit:disabled {
  opacity: 0.62;
  cursor: wait;
}

.jcc-chatbot__lead-status {
  margin: 8px 0 0;
  color: #656565;
  font-size: 12px;
  line-height: 1.45;
}

.jcc-chatbot__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  flex: 0 0 auto;
  grid-template-columns: minmax(0, 1fr) 104px;
  padding: 14px 22px 10px;
  background: #f5f5f5;
  border-top: 1px solid rgba(117, 117, 117, 0.26);
}

.jcc-chatbot__input {
  min-width: 0;
  min-height: 58px;
  max-height: 96px;
  resize: none;
  border: 1px solid rgba(117, 117, 117, 0.55);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 11px;
  color: #202020;
  font-size: 14px;
  line-height: 1.35;
}

.jcc-chatbot__submit {
  min-width: 104px;
  min-height: 58px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #d2d2d2;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.jcc-chatbot__submit:disabled,
.jcc-chatbot__input:disabled {
  opacity: 0.62;
  cursor: wait;
}

.jcc-chatbot__privacy {
  flex: 0 0 auto;
  margin: 0;
  padding: 12px 18px 10px;
  border-top: 1px solid rgba(117, 117, 117, 0.24);
  background: #f5f5f5;
  color: #343434;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  overflow-wrap: break-word;
}

.jcc-chatbot__privacy p {
  margin: 0;
}

.jcc-chatbot__source-url { overflow-wrap: anywhere; word-break: normal; }

.jcc-chatbot__privacy p + p {
  margin-top: 3px;
}

.jcc-chatbot__footer {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0 22px 16px;
  background: #f5f5f5;
}

.jcc-chatbot__form[hidden],
.jcc-chatbot__starters[hidden],
.jcc-chatbot__followup[hidden],
.jcc-chatbot__footer[hidden],
.jcc-chatbot.is-hard-locked .jcc-chatbot__footer,
.jcc-chatbot.is-hard-locked .jcc-chatbot__form,
.jcc-chatbot.is-hard-locked .jcc-chatbot__starters {
  display: none !important;
}

.jcc-chatbot:not(.has-conversation) .jcc-chatbot__footer {
  display: none;
}

.jcc-chatbot__cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(117, 117, 117, 0.68);
  background: #fafafa;
  padding: 9px 10px;
  color: #3f3f3f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .jcc-chatbot {
    right: calc(12px + env(safe-area-inset-right, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .jcc-chatbot__button {
    min-height: 46px;
    padding: 0 15px;
  }

  .jcc-chatbot__panel {
    left: 12px;
    right: 12px;
    bottom: 58px;
    width: auto;
    max-height: calc(100vh - 82px);
  }

  .jcc-chatbot__title {
    font-size: 17px;
  }

  .jcc-chatbot__messages {
    min-height: 110px;
    max-height: 210px;
  }

  .jcc-chatbot.has-lead-expanded .jcc-chatbot__messages {
    min-height: 130px;
    max-height: 220px;
  }

  .jcc-chatbot__lead {
    max-height: 190px;
  }

  .jcc-chatbot__lead-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .jcc-chatbot__lead-actions {
    width: 100%;
  }

  .jcc-chatbot__lead-open,
  .jcc-chatbot__lead-close {
    width: 100%;
  }

  .jcc-chatbot__lead-form,
  .jcc-chatbot__form {
    grid-template-columns: 1fr;
  }

  .jcc-chatbot__submit {
    width: 100%;
  }

  .jcc-chatbot__footer {
    flex-wrap: wrap;
  }

  .jcc-chatbot__cta {
    flex-basis: 100%;
  }
}

/* Brand Book v1.12.4 — JCC AI Legal Concierge product treatment. */
.jcc-chatbot {
  --jcc-concierge-forest: #355b4a;
  --jcc-concierge-forest-dark: #292a29;
  --jcc-concierge-ivory: #f6f2ea;
  --jcc-concierge-warm: #dedad2;
  --jcc-concierge-gold: #dda646;
  --jcc-concierge-ink: #202020;
  --jcc-concierge-muted: #55534f;
}

.jcc-chatbot__button {
  border: 1px solid var(--jcc-concierge-forest);
  background: var(--jcc-concierge-forest);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 47, 34, .24);
}

.jcc-chatbot__button:hover,
.jcc-chatbot__button:focus-visible {
  background: var(--jcc-concierge-forest-dark);
}

.jcc-chatbot__panel,
.jcc-chatbot .jcc-chatbot__panel {
  border: 1px solid rgba(0, 47, 34, .48);
  background: var(--jcc-concierge-ivory);
  box-shadow: 0 22px 58px rgba(0, 31, 23, .26);
}

.jcc-chatbot__header,
.jcc-chatbot .jcc-chatbot__header {
  border-bottom-color: rgba(199, 166, 75, .62);
  background: var(--jcc-concierge-forest);
  color: #fff;
}

.jcc-chatbot__eyebrow {
  color: #e8d58f;
}

.jcc-chatbot__title,
.jcc-chatbot .jcc-chatbot__title {
  color: #fff !important;
  font-weight: 400;
}

.jcc-chatbot__powered {
  color: #f2e7bd;
}

.jcc-chatbot__close,
.jcc-chatbot .jcc-chatbot__close {
  border-color: rgba(255, 255, 255, .44) !important;
  background: rgba(255, 255, 255, .08);
  color: #fff !important;
}

.jcc-chatbot__faq-label,
.jcc-chatbot__starters {
  background: var(--jcc-concierge-ivory);
}

.jcc-chatbot__faq-label {
  color: var(--jcc-concierge-forest);
}

.jcc-chatbot__starter {
  border-color: rgba(0, 47, 34, .24);
  background: #f7f3e9;
  color: var(--jcc-concierge-ink);
}

.jcc-chatbot__starter:hover,
.jcc-chatbot__starter:focus-visible {
  border-color: var(--jcc-concierge-gold);
  background: #fff9e9;
}

.jcc-chatbot__messages {
  background: var(--jcc-concierge-warm);
}

.jcc-chatbot__message--assistant {
  border-color: rgba(0, 47, 34, .13);
  background: var(--jcc-concierge-ivory);
  color: var(--jcc-concierge-ink);
}

.jcc-chatbot__message--user {
  background: var(--jcc-concierge-forest);
  color: #fff;
}

.jcc-chatbot__source-link {
  color: var(--jcc-concierge-forest);
}

.jcc-chatbot__form {
  border-top-color: rgba(0, 47, 34, .14);
  background: var(--jcc-concierge-ivory);
}

.jcc-chatbot__input {
  border-color: rgba(0, 47, 34, .28);
  color: var(--jcc-concierge-ink);
}

.jcc-chatbot__submit {
  border-color: var(--jcc-concierge-forest);
  background: var(--jcc-concierge-forest);
  color: #fff;
}

.jcc-chatbot__privacy {
  border-top-color: rgba(0, 47, 34, .12);
  background: var(--jcc-concierge-ivory);
  color: var(--jcc-concierge-muted);
}

.jcc-chatbot .jcc-chatbot__privacy a {
  color: var(--jcc-concierge-forest);
}

.jcc-chatbot__footer {
  background: var(--jcc-concierge-ivory);
}

.jcc-chatbot__cta {
  min-height: 61px;
  border: 1px solid var(--jcc-concierge-gold);
  background: var(--jcc-concierge-gold);
  color: #172017;
  text-align: center;
}

.jcc-chatbot__button:focus-visible,
.jcc-chatbot__starter:focus-visible,
.jcc-chatbot__submit:focus-visible,
.jcc-chatbot__cta:focus-visible,
.jcc-chatbot__input:focus-visible,
.jcc-chatbot__source-link:focus-visible {
  outline: 3px solid var(--jcc-concierge-forest);
  outline-offset: 3px;
}

.jcc-chatbot__close:focus-visible,
.jcc-chatbot__powered:focus-visible {
  outline: 3px solid var(--jcc-concierge-gold);
  outline-offset: 3px;
}




/* Mobile contrast and viewport containment, 2026-07-11 */
.jcc-chatbot .jcc-chatbot__panel {
  border-color: rgba(117, 117, 117, 0.72);
  border-radius: 14px;
}

.jcc-chatbot .jcc-chatbot__header {
  position: static !important;
  color: #343434 !important;
  background: #f5f5f5 !important;
  border-bottom: 1px solid rgba(117, 117, 117, .32) !important;
  box-shadow: none !important;
}

.jcc-chatbot .jcc-chatbot__title {
  color: #1d1d1d !important;
}

.jcc-chatbot .jcc-chatbot__eyebrow,
.jcc-chatbot .jcc-chatbot__powered {
  color: var(--jcc-concierge-forest);
}

.jcc-chatbot .jcc-chatbot__close {
  color: #2a2a2a !important;
  border-color: rgba(117, 117, 117, .58) !important;
}

.jcc-chatbot .jcc-chatbot__privacy {
  color: #343434;
  font-size: 11px;
  line-height: 1.3;
  padding: 4px 14px;
}

.jcc-chatbot .jcc-chatbot__privacy p + p {
  margin-top: 2px;
}

.jcc-chatbot .jcc-chatbot__privacy a {
  color: #3f3f3f;
  font-weight: 700;
}

@media (max-width: 560px) {
  .jcc-chatbot.is-open .jcc-chatbot__button {
    display: none;
  }

  .jcc-chatbot .jcc-chatbot__panel {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    width: auto;
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .jcc-chatbot .jcc-chatbot__starters {
    flex: 0 1 auto;
    max-height: 320px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .jcc-chatbot .jcc-chatbot__messages,
  .jcc-chatbot.has-lead-expanded .jcc-chatbot__messages {
    flex: 1 1 96px;
    min-height: 70px;
    max-height: none;
  }

  .jcc-chatbot .jcc-chatbot__form {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .jcc-chatbot .jcc-chatbot__submit {
    width: auto;
  }

  .jcc-chatbot .jcc-chatbot__close {
    flex: 0 0 44px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .jcc-chatbot .jcc-chatbot__privacy {
    padding: 4px 12px;
    text-align: left;
  }

  .jcc-chatbot .jcc-chatbot__footer {
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) and (max-height: 680px) {
  .jcc-chatbot .jcc-chatbot__header {
    padding: 10px 12px;
  }

  .jcc-chatbot .jcc-chatbot__logo {
    width: 56px;
    height: 36px;
    flex-basis: 56px;
  }

  .jcc-chatbot .jcc-chatbot__starters {
    gap: 6px;
    max-height: 190px;
    padding: 8px 12px 0;
  }

  .jcc-chatbot .jcc-chatbot__starter {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12.5px;
  }

  .jcc-chatbot .jcc-chatbot__messages,
  .jcc-chatbot.has-lead-expanded .jcc-chatbot__messages {
    min-height: 56px;
  }

  .jcc-chatbot .jcc-chatbot__form {
    padding: 10px 12px;
  }

  .jcc-chatbot .jcc-chatbot__privacy {
    padding: 4px 12px;
    font-size: 11px;
    line-height: 1.3;
  }

  .jcc-chatbot .jcc-chatbot__footer {
    padding: 0 12px max(12px, env(safe-area-inset-bottom));
  }

  .jcc-chatbot .jcc-chatbot__cta {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* Short windows, including browser zoom: preserve readable chat and reachable controls. */
@media (max-height: 560px) {
  .jcc-chatbot .jcc-chatbot__panel {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .jcc-chatbot .jcc-chatbot__header {
    padding: 10px 12px;
  }

  .jcc-chatbot .jcc-chatbot__messages,
  .jcc-chatbot.has-lead-expanded .jcc-chatbot__messages {
    flex: 1 0 120px;
    min-height: 120px;
  }

  .jcc-chatbot .jcc-chatbot__form {
    padding: 10px 12px;
  }
}

/* JCC strict neutral controls 2026-07-18: chatbot typography and action hierarchy. */
.jcc-chatbot__button,
.jcc-chatbot__lead-open,
.jcc-chatbot__lead-close,
.jcc-chatbot__lead-submit,
.jcc-chatbot__submit,
.jcc-chatbot__cta {
  min-height: 48px;
  border-radius: 999px;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .08em;
}
.jcc-chatbot__button,
.jcc-chatbot__lead-open,
.jcc-chatbot__lead-submit,
.jcc-chatbot__cta { text-transform: uppercase; }

.jcc-chatbot__button {
  gap: 10px;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: none;
  white-space: nowrap;
}

.jcc-chatbot:not(.is-open) .jcc-chatbot__button::before {
  content: "";
  display: inline-block;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  background: url("/assets/jcc-chat-icon.svg") center / contain no-repeat;
}

.jcc-chatbot__button-label {
  display: inline-block;
}

/* Labelled mobile launcher and safe-area overlap guard, 2026-09-08. */
@media (max-width: 560px) {
  .jcc-chatbot:not(.is-open) .jcc-chatbot__button {
    justify-content: center;
    width: auto;
    max-width: calc(100vw - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    min-height: 48px;
    padding: 0 13px;
    gap: 7px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .025em;
  }

  .jcc-chatbot:not(.is-open) .jcc-chatbot__button::before {
    flex-basis: 17px;
    width: 17px;
    height: 17px;
  }
}

/* Reserve a clear footer area below its text for the fixed Concierge launcher. */
html body:has(.jcc-chatbot) footer .jcc-home-footer-bottom.jcc-home-footer-bottom {
  padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
}
