.sgg-ai {
  --ai-black: #111111;
  --ai-ink: #191919;
  --ai-muted: #707070;
  --ai-line: #e7e5e1;
  --ai-warm: #f7f6f3;
  --ai-soft: #f0efeb;
  --ai-green: #237a49;
  position: relative;
  z-index: 2147482000;
  font-family: "Figtree", sans-serif;
}

.sgg-ai * { box-sizing: border-box; }

.sgg-ai__launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  min-height: 50px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  background: var(--ai-black);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .17);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.sgg-ai__launcher:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .2);
}

.sgg-ai__launcher i { font-size: 15px; }

.sgg-ai__panel {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 4;
  width: min(470px, calc(100vw - 32px));
  height: min(720px, calc(100vh - 116px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ai-line);
  border-radius: 24px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.985);
  transform-origin: bottom right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.sgg-ai[data-open="true"] .sgg-ai__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.sgg-ai__header {
  min-height: 82px;
  padding: 14px 14px 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-bottom: 1px solid var(--ai-line);
}

.sgg-ai__brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.sgg-ai__brand-mark {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--ai-black);
  color: #fff !important;
}

.sgg-ai__brand-mark i { font-size: 16px; }

.sgg-ai__brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sgg-ai__brand-copy strong {
  color: var(--ai-ink);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 850;
}

.sgg-ai__brand-copy span {
  max-width: 300px;
  overflow: hidden;
  color: var(--ai-muted);
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sgg-ai__header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sgg-ai__reset,
.sgg-ai__close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--ai-line);
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}

.sgg-ai__reset:hover,
.sgg-ai__close:hover {
  background: var(--ai-warm);
  border-color: #d3d0ca;
}

.sgg-ai__messages {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 18px 17px 12px;
  background: var(--ai-warm);
  scrollbar-width: thin;
  overscroll-behavior: contain;
}

.sgg-ai__message {
  display: flex;
  margin-bottom: 11px;
}

.sgg-ai__message--user { justify-content: flex-end; }

.sgg-ai__bubble {
  max-width: 91%;
  padding: 12px 14px;
  border: 1px solid var(--ai-line);
  border-radius: 17px;
  background: #fff;
  color: var(--ai-ink);
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .015);
}

.sgg-ai__message--assistant .sgg-ai__bubble { border-bottom-left-radius: 6px; }

.sgg-ai__message--user .sgg-ai__bubble {
  max-width: 84%;
  background: var(--ai-black);
  border-color: var(--ai-black);
  border-bottom-right-radius: 6px;
  color: #fff;
}

.sgg-ai__bubble p { margin: 0; }
.sgg-ai__bubble p + p { margin-top: 7px; }

.sgg-ai__bubble ul {
  margin: 2px 0 0;
  padding-left: 18px;
}

.sgg-ai__bubble li { margin: 4px 0; }

.sgg-ai__message.is-warning .sgg-ai__bubble {
  background: #fff9ec;
  border-color: #eadcb6;
}

.sgg-ai__typing .sgg-ai__bubble {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sgg-ai__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999;
  animation: sggAiDot 1s infinite ease-in-out;
}

.sgg-ai__typing span:nth-child(2) { animation-delay: .12s; }
.sgg-ai__typing span:nth-child(3) { animation-delay: .24s; }

@keyframes sggAiDot {
  0%, 70%, 100% { transform: translateY(0); opacity: .45; }
  35% { transform: translateY(-3px); opacity: 1; }
}

.sgg-ai__results {
  display: grid;
  gap: 8px;
  margin: 0 0 13px;
}

.sgg-ai__result {
  padding: 13px;
  background: #fff;
  border: 1px solid var(--ai-line);
  border-radius: 17px;
}

.sgg-ai__result-top {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.sgg-ai__result-logo {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ai-soft);
  color: #111;
  font-size: 13px;
  font-weight: 850;
}

.sgg-ai__result-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sgg-ai__result-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sgg-ai__result-venue {
  color: #111;
  font-size: 13.5px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.sgg-ai__result-venue:hover { text-decoration: underline; }

.sgg-ai__result-title {
  margin-top: 3px;
  color: #303030;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
}

.sgg-ai__result-meta {
  margin-top: 5px;
  color: var(--ai-muted);
  font-size: 11.5px;
  line-height: 1.35;
}

.sgg-ai__result-spots {
  margin-top: 7px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: #e9f5ed;
  color: var(--ai-green);
  font-size: 10.5px;
  font-weight: 800;
}

.sgg-ai__result-actions {
  margin-top: 11px;
  display: flex;
  gap: 7px;
}

.sgg-ai__result-actions a {
  min-height: 35px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.sgg-ai__result-secondary {
  border: 1px solid #d9d6d0;
  background: #fff;
  color: #111;
}

.sgg-ai__result-primary {
  border: 1px solid #111;
  background: #111;
  color: #fff;
}

.sgg-ai__results--places { gap: 7px; }

.sgg-ai__place {
  min-height: 66px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ai-line);
  border-radius: 16px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: border-color .15s ease, transform .15s ease;
}

.sgg-ai__place:hover {
  border-color: #d2cec7;
  transform: translateY(-1px);
}

.sgg-ai__place .sgg-ai__result-logo {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
}

.sgg-ai__place-copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sgg-ai__place-copy strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sgg-ai__place-copy > span:not(.sgg-ai__place-tags) {
  margin-top: 3px;
  color: var(--ai-muted);
  font-size: 10.5px;
  line-height: 1.25;
}

.sgg-ai__place-tags {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.sgg-ai__place-tags span {
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--ai-soft);
  color: #555;
  font-size: 9.5px;
  font-weight: 700;
}

.sgg-ai__place-arrow {
  flex: 0 0 auto;
  color: #777;
  font-size: 13px;
}

.sgg-ai__inline-action,
.sgg-ai__calendar-link { margin: 0 0 12px; }

.sgg-ai__inline-action button,
.sgg-ai__calendar-link a {
  min-height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d9d5ce;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.sgg-ai__calendar-link a {
  border-color: transparent;
  background: transparent;
  padding-left: 2px;
}

.sgg-ai__suggestions {
  padding: 10px 14px 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  background: #fff;
}

.sgg-ai__suggestions button {
  min-width: 0;
  min-height: 34px;
  padding: 7px 10px;
  overflow: hidden;
  border: 1px solid var(--ai-line);
  border-radius: 999px;
  background: #fff;
  color: #333;
  font: inherit;
  font-size: 10.5px;
  font-weight: 750;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}

.sgg-ai__suggestions button:hover {
  background: var(--ai-warm);
  border-color: #cbc7c0;
}

.sgg-ai__form {
  padding: 7px 12px 9px 14px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  background: #fff;
}

.sgg-ai__form textarea {
  flex: 1;
  min-height: 44px;
  max-height: 116px;
  resize: none;
  padding: 11px 13px;
  border: 1px solid #d8d5cf;
  border-radius: 17px;
  outline: none;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
}

.sgg-ai__form textarea::placeholder { color: #8a8a8a; }

.sgg-ai__form textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}

.sgg-ai__form > button {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.sgg-ai__form > button:disabled { opacity: .42; cursor: default; }

.sgg-ai__fineprint {
  padding: 0 15px 11px;
  background: #fff;
  color: #8a8a8a;
  font-size: 9.5px;
  line-height: 1.35;
}

.sgg-ai__backdrop { display: none; }

@media (max-width: 680px) {
  html.sgg-ai-open,
  html.sgg-ai-open body { overflow: hidden; }

  .sgg-ai__launcher {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 17px;
  }

  .sgg-ai__panel {
    right: 0;
    bottom: 0;
    width: 100%;
    height: min(88vh, 780px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform .22s ease, visibility .22s, opacity .22s;
  }

  .sgg-ai[data-open="true"] .sgg-ai__panel { transform: none; }

  .sgg-ai__backdrop {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: block;
    background: rgba(0, 0, 0, .28);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
  }

  .sgg-ai[data-open="true"] .sgg-ai__backdrop {
    opacity: 1;
    visibility: visible;
  }

  .sgg-ai[data-open="true"] .sgg-ai__launcher {
    opacity: 0;
    pointer-events: none;
  }

  .sgg-ai__header { padding-left: 14px; }
  .sgg-ai__brand-copy span { max-width: 210px; }
  .sgg-ai__messages { padding: 16px 13px 10px; }
  .sgg-ai__suggestions { padding-right: 12px; padding-left: 12px; }
  .sgg-ai__fineprint { padding-bottom: max(10px, env(safe-area-inset-bottom)); }
}

@media (max-width: 390px) {
  .sgg-ai__reset { display: none; }
  .sgg-ai__brand-copy span { max-width: 190px; }
  .sgg-ai__suggestions { grid-template-columns: 1fr 1fr; }
}

/* Robust mobile assistant shell.
   Keep the assistant isolated from legacy/global header rules and use the
   actual mobile viewport instead of an 88vh bottom sheet. */
@media (max-width: 680px) {
  .sgg-ai {
    --sgg-ai-mobile-height: 100dvh;
  }

  .sgg-ai__panel {
    inset: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: var(--sgg-ai-mobile-height, 100dvh) !important;
    max-height: none !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff;
    box-shadow: none !important;
    transform: translateY(100%) !important;
    transform-origin: center bottom;
    isolation: isolate;
  }

  .sgg-ai[data-open="true"] .sgg-ai__panel {
    transform: translateY(0) !important;
  }

  .sgg-ai__header {
    z-index: 3;
    min-height: 72px;
    padding: max(12px, env(safe-area-inset-top)) 14px 11px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px;
    background: rgba(255,255,255,.98) !important;
    border-bottom: 1px solid var(--ai-line) !important;
  }

  .sgg-ai__brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .sgg-ai__brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .sgg-ai__brand-copy strong {
    font-size: 16px;
  }

  .sgg-ai__brand-copy span {
    max-width: min(64vw, 270px);
    font-size: 11px;
  }

  .sgg-ai__header-actions {
    gap: 5px;
  }

  .sgg-ai__reset,
  .sgg-ai__close {
    width: 38px;
    height: 38px;
    display: grid;
  }

  .sgg-ai__messages {
    flex: 1 1 auto;
    min-height: 0;
    padding: 16px 14px 18px;
    background: var(--ai-warm);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  .sgg-ai__bubble {
    max-width: 90%;
    padding: 11px 13px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.45;
  }

  .sgg-ai__message--user .sgg-ai__bubble {
    max-width: 86%;
  }

  .sgg-ai__suggestions {
    z-index: 2;
    display: flex !important;
    grid-template-columns: none !important;
    gap: 7px;
    padding: 9px 12px 6px;
    overflow-x: auto;
    overflow-y: hidden;
    background: #fff;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sgg-ai__suggestions::-webkit-scrollbar { display: none; }

  .sgg-ai__suggestions button {
    flex: 0 0 auto;
    min-height: 36px;
    max-width: none;
    padding: 7px 13px;
    font-size: 11.5px;
    white-space: nowrap;
  }

  .sgg-ai__form {
    z-index: 2;
    padding: 7px 12px 8px;
    gap: 8px;
    align-items: center;
    background: #fff;
  }

  .sgg-ai__form textarea {
    min-height: 48px;
    max-height: 112px;
    padding: 12px 14px;
    border: 1.5px solid #cfcac2;
    border-radius: 18px;
    font-size: 16px; /* prevents Safari input zoom */
    line-height: 1.35;
  }

  .sgg-ai__form > button {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .sgg-ai__fineprint {
    z-index: 2;
    padding: 0 14px max(10px, env(safe-area-inset-bottom));
    background: #fff;
    font-size: 9.5px;
  }

  .sgg-ai__backdrop {
    display: none !important;
  }

  .sgg-ai[data-open="true"] .sgg-ai__launcher {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 390px) {
  .sgg-ai__reset { display: grid; }
  .sgg-ai__brand-copy span { max-width: 50vw; }
}

/* v9.5.2 · Mobile Saunagus Finder
   Dedicated mobile shell. It intentionally overrides the older assistant
   mobile rules without changing the rest of the public theme. */
@media (max-width: 680px) {
  html.sgg-ai-open,
  html.sgg-ai-open body {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  /* The website navigation must never sit above the open assistant. */
  html.sgg-ai-open .sgg-site-navbar,
  html.sgg-ai-open .sgg-site-menu,
  html.sgg-ai-open .offcanvas-backdrop {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .sgg-ai {
    position: static !important;
    z-index: auto !important;
  }

  .sgg-ai__launcher {
    right: 14px !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    z-index: 2147483644 !important;
    min-height: 48px;
    padding: 0 17px;
    border-radius: 999px;
  }

  .sgg-ai__panel {
    position: fixed !important;
    z-index: 2147483646 !important;
    top: var(--sgg-ai-vv-top, 0px) !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: var(--sgg-ai-vv-height, 100dvh) !important;
    max-height: none !important;
    margin: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #f7f6f3 !important;
    box-shadow: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 100%, 0) !important;
    transition: transform .24s cubic-bezier(.22,.75,.25,1), opacity .18s ease, visibility .18s !important;
    isolation: isolate;
  }

  .sgg-ai[data-open="true"] .sgg-ai__panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .sgg-ai__header {
    position: relative !important;
    z-index: 5 !important;
    flex: 0 0 auto !important;
    min-height: 68px !important;
    padding: max(9px, env(safe-area-inset-top)) 14px 9px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    background: rgba(255,255,255,.98) !important;
    border-bottom: 1px solid #e8e5df !important;
    box-shadow: 0 1px 0 rgba(0,0,0,.015) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .sgg-ai__brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    gap: 10px !important;
  }

  .sgg-ai__brand-mark {
    flex: 0 0 38px !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
  }

  .sgg-ai__brand-copy strong {
    display: block !important;
    font-size: 16px !important;
    line-height: 1.08 !important;
    letter-spacing: -.01em;
  }

  .sgg-ai__brand-copy span {
    display: block !important;
    max-width: 62vw !important;
    margin-top: 3px !important;
    overflow: hidden !important;
    color: #777 !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
  }

  .sgg-ai__header-actions {
    flex: 0 0 auto !important;
    gap: 6px !important;
  }

  .sgg-ai__reset,
  .sgg-ai__close {
    flex: 0 0 38px !important;
    width: 38px !important;
    height: 38px !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid #e3e0da !important;
    background: #fff !important;
  }

  .sgg-ai__messages {
    position: relative !important;
    z-index: 1 !important;
    flex: 1 1 0 !important;
    min-height: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 18px 14px 20px !important;
    background: #f7f6f3 !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .sgg-ai__message {
    margin-bottom: 10px !important;
  }

  .sgg-ai__bubble {
    max-width: 89% !important;
    padding: 12px 14px !important;
    border: 1px solid #e3e0da !important;
    border-radius: 18px !important;
    background: #fff !important;
    color: #191919 !important;
    font-size: 14.5px !important;
    line-height: 1.48 !important;
    box-shadow: 0 1px 2px rgba(0,0,0,.025) !important;
  }

  .sgg-ai__message--assistant .sgg-ai__bubble {
    border-bottom-left-radius: 7px !important;
  }

  .sgg-ai__message--user .sgg-ai__bubble {
    max-width: 84% !important;
    border-color: #111 !important;
    border-bottom-right-radius: 7px !important;
    background: #111 !important;
    color: #fff !important;
  }

  .sgg-ai__results {
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .sgg-ai__result,
  .sgg-ai__place {
    border-radius: 16px !important;
  }

  .sgg-ai__suggestions {
    position: relative !important;
    z-index: 4 !important;
    flex: 0 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    width: 100% !important;
    padding: 10px 12px 7px !important;
    overflow: visible !important;
    background: #fff !important;
    border-top: 1px solid #ece9e4 !important;
  }

  .sgg-ai__suggestions button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 40px !important;
    max-width: none !important;
    padding: 8px 10px !important;
    overflow: hidden !important;
    border: 1px solid #dedad3 !important;
    border-radius: 13px !important;
    background: #fff !important;
    color: #252525 !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
  }

  .sgg-ai__form {
    position: relative !important;
    z-index: 5 !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    padding: 7px 12px 8px !important;
    display: flex !important;
    align-items: flex-end !important;
    gap: 9px !important;
    background: #fff !important;
  }

  .sgg-ai__form textarea {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 50px !important;
    max-height: 96px !important;
    margin: 0 !important;
    padding: 13px 15px !important;
    border: 1.5px solid #bbb6ae !important;
    border-radius: 18px !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
  }

  .sgg-ai__form textarea:focus {
    border-color: #111 !important;
    box-shadow: 0 0 0 1px #111 !important;
  }

  .sgg-ai__form > button {
    flex: 0 0 50px !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 19px !important;
  }

  .sgg-ai__fineprint {
    position: relative !important;
    z-index: 5 !important;
    flex: 0 0 auto !important;
    padding: 0 14px max(10px, env(safe-area-inset-bottom)) !important;
    background: #fff !important;
    color: #888 !important;
    font-size: 9.5px !important;
    line-height: 1.3 !important;
  }

  .sgg-ai__backdrop {
    display: none !important;
  }

  .sgg-ai[data-open="true"] .sgg-ai__launcher {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* When iOS opens the software keyboard, preserve the conversation and composer,
     remove secondary chrome, and fit exactly inside the Visual Viewport. */
  .sgg-ai.is-keyboard .sgg-ai__header {
    min-height: 58px !important;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .sgg-ai.is-keyboard .sgg-ai__brand-mark,
  .sgg-ai.is-keyboard .sgg-ai__brand-copy span,
  .sgg-ai.is-keyboard .sgg-ai__reset,
  .sgg-ai.is-keyboard .sgg-ai__suggestions,
  .sgg-ai.is-keyboard .sgg-ai__fineprint {
    display: none !important;
  }

  .sgg-ai.is-keyboard .sgg-ai__messages {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .sgg-ai.is-keyboard .sgg-ai__form {
    padding-top: 8px !important;
    padding-bottom: max(8px, env(safe-area-inset-bottom)) !important;
    border-top: 1px solid #ece9e4 !important;
  }
}

@media (max-width: 380px) {
  .sgg-ai__brand-copy span { max-width: 50vw !important; }
  .sgg-ai__suggestions button { font-size: 11.5px !important; }
}

/* v9.5.4 · result layout: price is a dedicated right-aligned value. */
.sgg-ai__result-copy {
  flex: 1 1 auto;
}

.sgg-ai__result-price {
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 10px;
  color: #111;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.sgg-ai__place-trailing {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sgg-ai__place-price {
  color: #111;
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .sgg-ai__result-price {
    font-size: 12.5px;
  }

  .sgg-ai__place-price {
    font-size: 12px;
  }
}

/* v9.5.7 · Saunagus Finder filters + stronger mobile discovery UI */
.sgg-ai__filterbar {
  display: flex;
  flex: 0 0 auto;
  gap: 7px;
  padding: 9px 10px;
  overflow-x: auto;
  border-bottom: 1px solid #ece9e4;
  background: #fff;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.sgg-ai__filterbar::-webkit-scrollbar { display: none; }
.sgg-ai__filterbar button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #dedad3;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}
.sgg-ai__filterbar button:hover,
.sgg-ai__filterbar button.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}
.sgg-ai__filterbar button b {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 10px;
  line-height: 18px;
}
.sgg-ai__filterbar button b[hidden] { display: none !important; }

.sgg-ai__filter-sheet {
  position: absolute;
  z-index: 40;
  inset: 64px 0 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
}
.sgg-ai__filter-sheet[hidden] { display: none !important; }
.sgg-ai__filter-sheet-head {
  flex: 0 0 auto;
  min-height: 62px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #ece9e4;
}
.sgg-ai__filter-sheet-head div { min-width: 0; }
.sgg-ai__filter-sheet-head span {
  display: block;
  margin-bottom: 2px;
  color: #85817b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sgg-ai__filter-sheet-head strong {
  display: block;
  color: #111;
  font-size: 17px;
  line-height: 1.1;
}
.sgg-ai__filter-sheet-head > button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #dedad3;
  border-radius: 50%;
  background: #fff;
  color: #111;
}
.sgg-ai__filter-sheet-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 4px 14px 18px;
  -webkit-overflow-scrolling: touch;
}
.sgg-ai__filter-sheet fieldset {
  margin: 0;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid #eeeae4;
}
.sgg-ai__filter-sheet fieldset:last-child { border-bottom: 0; }
.sgg-ai__filter-sheet legend {
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  color: #111;
  font-size: 13px;
  font-weight: 850;
}
.sgg-ai__filter-sheet fieldset > p {
  margin: -4px 0 9px;
  color: #777;
  font-size: 10.5px;
  line-height: 1.35;
}
.sgg-ai__filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.sgg-ai__filter-options label {
  position: relative;
  margin: 0;
  cursor: pointer;
}
.sgg-ai__filter-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sgg-ai__filter-options span {
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dedad3;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
}
.sgg-ai__filter-options input:checked + span {
  border-color: #111;
  background: #111;
  color: #fff;
}
.sgg-ai__filter-options input:focus-visible + span {
  outline: 2px solid #111;
  outline-offset: 2px;
}
.sgg-ai__filter-sheet-foot {
  flex: 0 0 auto;
  padding: 10px 14px max(12px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 8px;
  border-top: 1px solid #ece9e4;
  background: #fff;
}
.sgg-ai__filter-sheet-foot button {
  min-height: 46px;
  border-radius: 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}
.sgg-ai__filter-reset-all {
  border: 1px solid #dedad3;
  background: #fff;
  color: #111;
}
.sgg-ai__filter-apply {
  border: 1px solid #111;
  background: #111;
  color: #fff;
}

.sgg-ai__result-type {
  align-self: flex-start;
  margin-top: 5px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #f0efec;
  color: #444;
  font-size: 9.5px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .03em;
}

@media (max-width: 680px) {
  .sgg-ai__filterbar {
    position: relative !important;
    z-index: 5 !important;
    padding: 8px 12px !important;
    border-top: 0 !important;
    border-bottom: 1px solid #ece9e4 !important;
    background: #fff !important;
  }
  .sgg-ai__filterbar button {
    min-height: 36px !important;
    padding: 0 12px !important;
    font-size: 11.5px !important;
  }
  .sgg-ai__filter-sheet {
    position: absolute !important;
    z-index: 30 !important;
    inset: 68px 0 0 !important;
    height: auto !important;
    min-height: 0 !important;
    background: #fff !important;
  }
  .sgg-ai__filter-sheet-body { padding-left: 14px !important; padding-right: 14px !important; }
  .sgg-ai__filter-options { gap: 7px !important; }
  .sgg-ai__filter-options span {
    min-height: 36px !important;
    padding: 0 12px !important;
    font-size: 11.5px !important;
  }
  /* Suggestions are prompts, not a second navigation grid. Keep them compact. */
  .sgg-ai__suggestions {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 7px !important;
    padding: 8px 12px 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    border-top: 1px solid #ece9e4 !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .sgg-ai__suggestions::-webkit-scrollbar { display: none !important; }
  .sgg-ai__suggestions button {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: auto !important;
    min-height: 36px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    font-size: 11.5px !important;
    font-weight: 750 !important;
  }
  .sgg-ai.is-keyboard .sgg-ai__filterbar,
  .sgg-ai.is-keyboard .sgg-ai__filter-sheet {
    display: none !important;
  }
  .sgg-ai__result-price,
  .sgg-ai__place-price {
    min-width: 64px;
    font-variant-numeric: tabular-nums;
  }
}
.sgg-ai__filter-location {
  position: relative;
  display: flex;
  align-items: center;
}
.sgg-ai__filter-location i {
  position: absolute;
  left: 12px;
  color: #777;
  pointer-events: none;
}
.sgg-ai__filter-location input {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px 9px 35px;
  border: 1px solid #dedad3;
  border-radius: 13px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 13px;
  outline: 0;
}
.sgg-ai__filter-location input:focus {
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}

/* v9.5.8 · mobile shell correction + discreet filters + larger result browsing */
.sgg-ai__filterbar { display: none !important; }

.sgg-ai__composer-filter {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid #dedad3;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font: inherit;
  line-height: 1;
  box-shadow: none;
}
.sgg-ai__composer-filter:hover,
.sgg-ai__composer-filter.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}
.sgg-ai__composer-filter b {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
}
.sgg-ai__composer-filter b[hidden] { display: none !important; }

.sgg-ai__result[hidden],
.sgg-ai__place[hidden] { display: none !important; }

.sgg-ai__results-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 2px 8px;
}
.sgg-ai__results-count {
  color: #777;
  font-size: 10.5px;
  line-height: 1.25;
}
.sgg-ai__results-more {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #d8d4ce;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}
.sgg-ai__results-more:hover { border-color: #111; }
.sgg-ai__results-more[hidden] { display: none !important; }

/* Suggestions are useful before the first question, but must not consume the
   conversation area once the user is actually chatting. */
.sgg-ai.has-conversation .sgg-ai__suggestions { display: none !important; }

@media (max-width: 680px) {
  /* Keep the real findensaunagus.dk navigation visible and above the Finder.
     The Finder begins below it and the offcanvas menu can always open over it. */
  html.sgg-ai-open .sgg-site-navbar {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 1030 !important;
  }
  html.sgg-ai-open .sgg-site-menu,
  html.sgg-ai-open .offcanvas-backdrop {
    opacity: initial !important;
    visibility: initial !important;
    pointer-events: auto !important;
  }

  .sgg-ai__launcher {
    z-index: 1020 !important;
  }

  .sgg-ai__panel {
    z-index: 1025 !important;
    top: var(--sgg-ai-panel-top, 72px) !important;
    height: var(--sgg-ai-panel-height, calc(100dvh - 72px)) !important;
  }

  .sgg-ai__header {
    min-height: 64px !important;
    padding: 8px 12px !important;
  }

  .sgg-ai__filter-sheet {
    inset: 64px 0 0 !important;
  }

  .sgg-ai__form {
    gap: 8px !important;
  }

  .sgg-ai__form > .sgg-ai__composer-filter {
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border: 1px solid #d9d5ce !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 17px !important;
  }
  .sgg-ai__form > .sgg-ai__composer-filter.is-active {
    border-color: #111 !important;
    background: #111 !important;
    color: #fff !important;
  }

  .sgg-ai__form > button[type="submit"] {
    flex: 0 0 50px !important;
    width: 50px !important;
    height: 50px !important;
    min-height: 50px !important;
  }

  .sgg-ai__results-footer {
    padding-bottom: 4px !important;
  }
  .sgg-ai__results-count { font-size: 10px !important; }
  .sgg-ai__results-more { min-height: 32px !important; font-size: 10.5px !important; }

  .sgg-ai.is-keyboard .sgg-ai__composer-filter {
    display: none !important;
  }
}

@media (max-width: 680px) {
  /* Restore Bootstrap's menu visibility semantics while keeping it above Finder. */
  html.sgg-ai-open .sgg-site-menu:not(.show) {
    opacity: 1 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  html.sgg-ai-open .sgg-site-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 1045 !important;
  }
  html.sgg-ai-open .offcanvas-backdrop:not(.show) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  html.sgg-ai-open .offcanvas-backdrop.show {
    opacity: .5 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 1040 !important;
  }
}

.sgg-ai__form > .sgg-ai__composer-filter {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid #dedad3;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 15px;
}
.sgg-ai__form > .sgg-ai__composer-filter:hover,
.sgg-ai__form > .sgg-ai__composer-filter.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}

/* v9.6.1 · Saunagus Finder is the top-most mobile modal.
   Previous builds intentionally kept the navbar/offcanvas above Finder; that
   made the chat look clipped and let the site header cover the Finder header. */
@media (max-width: 680px) {
  html.sgg-ai-open .sgg-site-navbar,
  html.sgg-ai-open .sgg-site-menu,
  html.sgg-ai-open .offcanvas-backdrop {
    z-index: 1030 !important;
  }
  .sgg-ai {
    position: relative !important;
    z-index: 2147483645 !important;
  }
  .sgg-ai__launcher {
    z-index: 2147483645 !important;
  }
  .sgg-ai__panel {
    z-index: 2147483647 !important;
    top: var(--sgg-ai-vv-top, 0px) !important;
    height: var(--sgg-ai-vv-height, 100dvh) !important;
  }
  .sgg-ai__filter-sheet {
    z-index: 2147483647 !important;
  }
}

/* v9.6.4 · Desktop front-page layering only. Mobile keeps the dedicated
   full-screen Finder shell above, without DOM reparenting or desktop overrides. */
@media (min-width:681px){
  .sgg-ai{z-index:2147483645!important}
  .sgg-ai__launcher{z-index:2147483646!important}
  .sgg-ai__panel,.sgg-ai__backdrop,.sgg-ai__filter-sheet{z-index:2147483647!important}
}
