/* Momo chat bubble — shared by the homepage and the booking page. */
.momo-mina-support:not(.is-open) { display: none; }
.momo-back { background: none; border: 0; color: var(--accent); padding: 9px 12px; cursor: pointer; font: inherit; font-size: 12px; }
.momo-get-access{border:1px solid #436a58;background:#1b3529;color:var(--accent);padding:8px 12px;border-radius:8px;font:inherit;font-size:12px;cursor:pointer;margin-top:7px}
.momo-signup{padding:16px;background:#111b23;border:1px solid #345045;border-radius:12px;margin:14px 0;color:#dce6e1}
.momo-signup h3{font-size:16px;margin:0 0 7px}.momo-signup p{font-size:11px;line-height:1.6;color:#9dafb9}
.momo-signup label{display:block;font-size:12px;margin:12px 0}.momo-signup input:not([type=checkbox]){width:100%;display:block;box-sizing:border-box;font:inherit;font-size:16px;min-height:42px;padding:9px;margin-top:5px;color:#eef5f1;border:1px solid #34434e;border-radius:8px;background:#0b1118}
.momo-signup .momo-consent{display:flex;gap:10px;align-items:flex-start;font-size:11px;line-height:1.6}.momo-consent input[type=checkbox]{width:18px;height:18px;flex:0 0 18px;margin:2px 0 0;accent-color:#72f1b8}
.momo-signup button{width:100%;border:0;border-radius:8px;background:#72f1b8;color:#07110c;padding:12px;font:inherit;font-size:13px;cursor:pointer}.momo-signup button:disabled{opacity:.5}
.momo-signup a{color:#72f1b8;text-decoration:underline}.momo-signup .momo-signup-status{color:#b7dfca;margin-bottom:0}
.momo-mina-support:has(.momo-signup) .momo-chat-panel{height:min(720px,calc(100dvh - 110px))}
.momo-mina-support .momo-chat-panel { height: min(536px, calc(100dvh - 110px)); }
.momo-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.momo-chat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  flex-shrink: 0;
  color: #07110c;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
  font: 750 13px inherit;
  box-shadow: 0 14px 38px rgba(114, 241, 184, .22);
  transition: transform .2s, box-shadow .2s;
}
.momo-chat-toggle:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(114, 241, 184, .3); }
.momo-chat-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.momo-chat-badge {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: rgba(7, 17, 12, .14);
  border-radius: 50%;
  font: 900 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.momo-chat-close { display: none; font-size: 21px; line-height: 1; }
.momo-chat.is-open .momo-chat-badge { display: none; }
.momo-chat.is-open .momo-chat-close { display: block; }
.momo-chat.is-open .momo-chat-toggle {
  width: 62px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

.momo-chat-panel {
  width: min(376px, calc(100vw - 32px));
  height: min(536px, calc(100vh - 130px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(22, 27, 37, .99), rgba(11, 14, 20, .99));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  animation: momo-chat-in .22s ease;
}
.momo-chat-panel[hidden] { display: none; }

@keyframes momo-chat-in {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: none; }
}

.momo-chat-head {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
}
.momo-chat-head > div { min-width: 0; display: flex; flex-direction: column; }
.momo-chat-head strong { color: var(--text); font-size: 13px; }
.momo-chat-head small { color: var(--muted); font-size: 10px; }
.momo-chat-head .momo-avatar { width: 38px; height: 38px; border-radius: 10px; }

/* Keep the original portrait intact; frame the face in each avatar. */
img.momo-chat-badge,
.momo-chat-head img.momo-avatar,
.momo-console img.momo-avatar {
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 50%;
}

.momo-photo-link { display: block; width: fit-content; border-radius: 50%; cursor: zoom-in; }
.momo-photo-link:hover { outline: 2px solid var(--accent); outline-offset: 3px; }
.momo-photo-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.momo-photo-viewer {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  border: 1px solid #39424f;
  border-radius: 16px;
  background: #0b0e14;
  color: #fff;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 32px);
  overflow: hidden;
}
.momo-photo-viewer::backdrop { background: rgba(0, 0, 0, .85); }
.momo-photo-viewer > img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(600px, calc(100vw - 34px));
  max-height: calc(100dvh - 34px);
  object-fit: contain;
}
.momo-photo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.momo-photo-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.momo-chat-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font: 700 8.5px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .1em;
}
.momo-chat-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: momo-chat-pulse 2s ease-in-out infinite;
}
@keyframes momo-chat-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }

.momo-chat-log {
  flex: 1 1 auto;
  min-height: 0;
  padding: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.momo-msg { display: flex; margin-bottom: 11px; }
.momo-msg-user { justify-content: flex-end; }

.momo-msg-bubble {
  max-width: 84%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
}
.momo-msg-bubble p { margin: 0 0 9px; }
.momo-msg-bubble p:last-child { margin-bottom: 0; }

.momo-msg-assistant .momo-msg-bubble {
  color: #d3dae4;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.momo-msg-user .momo-msg-bubble {
  color: #07110c;
  background: var(--accent);
  border-bottom-right-radius: 4px;
  font-weight: 600;
}

.momo-typing .momo-msg-bubble { display: flex; gap: 4px; padding: 13px; }
.momo-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .35;
  animation: momo-typing 1.2s ease-in-out infinite;
}
.momo-typing span:nth-child(2) { animation-delay: .18s; }
.momo-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes momo-typing {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.momo-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 6px; }
.momo-chip {
  padding: 7px 11px;
  color: #b9c3d1;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  font: 11px inherit;
  text-align: left;
  transition: border-color .2s, color .2s;
}
.momo-chip:hover { border-color: var(--accent); color: var(--text); }

.momo-chat-form {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 8px;
  align-items: end;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}
.momo-chat-srlabel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.momo-chat-form textarea {
  width: 100%;
  min-height: 42px;
  max-height: 110px;
  padding: 11px 12px;
  color: var(--text);
  background: #0b0e14;
  border: 1px solid #303846;
  border-radius: 9px;
  outline: none;
  resize: none;
  overflow-y: auto;
  font: inherit;
  font-size: 13px;
  line-height: 1.45;
  transition: border-color .2s;
  /* Some engines draw stepper controls on a sized textarea. */
  appearance: none;
  -webkit-appearance: none;
}
.momo-chat-form textarea::-webkit-inner-spin-button,
.momo-chat-form textarea::-webkit-outer-spin-button {
  display: none;
  margin: 0;
  -webkit-appearance: none;
}
.momo-chat-form textarea::placeholder { color: #5f6a7a; }

/* Slim scrollbars - the default chrome is what looked bolted on. */
.momo-chat-log,
.momo-chat-form textarea {
  scrollbar-width: thin;
  scrollbar-color: #39424f transparent;
}
.momo-chat-log::-webkit-scrollbar,
.momo-chat-form textarea::-webkit-scrollbar { width: 7px; }
.momo-chat-log::-webkit-scrollbar-track,
.momo-chat-form textarea::-webkit-scrollbar-track { background: transparent; }
.momo-chat-log::-webkit-scrollbar-thumb,
.momo-chat-form textarea::-webkit-scrollbar-thumb {
  background: #39424f;
  border-radius: 4px;
}
.momo-chat-log::-webkit-scrollbar-thumb:hover,
.momo-chat-form textarea::-webkit-scrollbar-thumb:hover { background: #4a5566; }
.momo-chat-form textarea:focus { border-color: rgba(114, 241, 184, .6); }
.momo-chat-form button {
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #07110c;
  background: var(--accent);
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  transition: opacity .2s;
}
.momo-chat-form button[disabled] { opacity: .5; cursor: wait; }

.momo-chat-foot {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 14px 13px;
  color: #616b7b;
  font-size: 9.5px;
  line-height: 1.5;
  text-align: center;
}
.momo-chat-foot a { color: #8f9aab; text-decoration: underline; }

@media (max-width: 620px) {
  .momo-chat { right: 14px; bottom: 14px; }
  .momo-chat-panel { height: min(520px, calc(100vh - 110px)); }
}

@media (prefers-reduced-motion: reduce) {
  .momo-chat-panel { animation: none; }
  .momo-chat-toggle { transition: none; }
  .momo-chat-toggle:hover { transform: none; }
  .momo-chat-live i, .momo-typing span { animation: none; }
}
