.rnr-ai-chat-root {
  position: fixed;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
  z-index: 2147483000;
  font-family: 'Cormorant Garamond', serif;
  color: #f0e2c0;
}

.rnr-ai-chat-root,
.rnr-ai-chat-root *,
.rnr-ai-chat-root *::before,
.rnr-ai-chat-root *::after {
  box-sizing: border-box;
}

.rnr-ai-chat-launcher {
  position: relative;
  width: 4.45rem;
  height: 4.45rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 180ms ease, box-shadow 220ms ease, background-color 220ms ease, opacity 220ms ease;
}

.rnr-ai-chat-launcher:focus-visible,
.rnr-ai-chat-action:focus-visible,
.rnr-ai-chat-send:focus-visible,
.rnr-ai-chat-input:focus-visible,
.rnr-ai-chat-close:focus-visible {
  outline: 2px solid #e0c584;
  outline-offset: 2px;
}

.rnr-ai-chat-launcher img {
  width: 4.45rem;
  height: 4.45rem;
  object-fit: cover;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
  transition: opacity 220ms ease, filter 220ms ease;
}

.rnr-ai-chat-fallback {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #050505, #1a1a1a);
  color: #e0c584;
  font-size: 1.15rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

.rnr-ai-chat-open-indicator {
  position: absolute;
  right: 0.15rem;
  top: 0.15rem;
  display: none;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(248, 225, 176, 0.22);
  color: #f8e1b0;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.rnr-ai-chat-launcher:hover {
  transform: translateY(-2px);
  background: radial-gradient(circle at 50% 50%, rgba(224, 197, 132, 0.12), rgba(224, 197, 132, 0));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28), 0 0 14px rgba(224, 197, 132, 0.18);
}

.rnr-ai-chat-root[data-chat-open='true'] .rnr-ai-chat-launcher {
  opacity: 0.78;
  transform: none;
  background: rgba(224, 197, 132, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.rnr-ai-chat-root[data-chat-open='true'] .rnr-ai-chat-launcher img {
  opacity: 0.42;
  filter: grayscale(0.15) saturate(0.6) brightness(0.86);
}

.rnr-ai-chat-root[data-chat-open='true'] .rnr-ai-chat-open-indicator {
  display: inline-flex;
}

.rnr-ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 5.15rem;
  width: min(25rem, calc(100vw - 1.25rem));
  height: min(42rem, calc(100vh - 3.25rem));
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(6, 6, 6, 0.98));
  border: 1px solid rgba(224, 197, 132, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.15rem);
  transform-origin: bottom right;
  transition: opacity 80ms ease, transform 80ms ease, visibility 0ms linear 80ms;
}

.rnr-ai-chat-panel[data-open='true'] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: opacity 80ms ease, transform 80ms ease, visibility 0ms linear 0ms;
}

.rnr-ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.62rem 0.72rem;
  border-bottom: 1px solid rgba(224, 197, 132, 0.3);
}

.rnr-ai-chat-header-identity {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.rnr-ai-chat-header-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(224, 197, 132, 0.42);
  background: rgba(0, 0, 0, 0.35);
  flex: 0 0 auto;
}

.rnr-ai-chat-header-text {
  min-width: 0;
}

.rnr-ai-chat-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.rnr-ai-chat-title {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #e0c584;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rnr-ai-chat-subtitle {
  margin: 0.1rem 0 0;
  font-size: 0.68rem;
  color: rgba(240, 226, 192, 0.74);
}

.rnr-ai-chat-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 197, 132, 0.35);
  background: transparent;
  color: #f0e2c0;
  min-width: 1.75rem;
  height: 1.75rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

.rnr-ai-chat-close,
.rnr-ai-chat-action[data-modal-close],
.rnr-ai-chat-action[data-details-close] {
  font-size: 1rem;
  font-weight: 600;
}

.rnr-ai-chat-end {
  font-size: 0.72rem;
  min-width: 2.65rem;
  padding: 0 0.45rem;
}

.rnr-ai-chat-messages {
  padding: 0.62rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  scroll-behavior: smooth;
}

.rnr-ai-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  opacity: 1;
  transition: opacity 180ms ease, filter 180ms ease;
}

.rnr-ai-chat-row[data-message-age='older'] {
  filter: saturate(0.72);
  opacity: 0.32;
}

.rnr-ai-chat-row[data-message-age='older']:hover,
.rnr-ai-chat-row[data-message-age='older']:focus-within {
  filter: none;
  opacity: 0.88;
}

.rnr-ai-chat-jump-latest {
  display: none;
}

.rnr-ai-chat-row-completed {
  opacity: 0.34;
  transition: opacity 180ms ease;
}

.rnr-ai-chat-row-completed:focus-within,
.rnr-ai-chat-row-completed:hover {
  opacity: 0.68;
}

.rnr-ai-chat-row[data-message-activity='latest'] .rnr-ai-chat-message,
.rnr-ai-chat-row[data-message-activity='latest'] .rnr-ai-chat-card {
  box-shadow: 0 0 0 1px rgba(224, 197, 132, 0.16), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rnr-ai-chat-row[data-role='user'] {
  justify-content: flex-end;
}

.rnr-ai-chat-avatar {
  width: 1.38rem;
  height: 1.38rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(224, 197, 132, 0.36);
  background: rgba(0, 0, 0, 0.4);
  flex: 0 0 auto;
}

.rnr-ai-chat-message-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: calc(100% - 2.1rem);
  flex: 1 1 auto;
}

.rnr-ai-chat-message-name {
  font-size: 0.64rem;
  line-height: 1.1;
  color: rgba(240, 226, 192, 0.76);
  margin: 0 0 0.2rem 0.05rem;
}

.rnr-ai-chat-message {
  width: fit-content;
  max-width: 100%;
  padding: 0.38rem 0.48rem;
  line-height: 1.3;
  font-size: 0.8rem;
  border: 1px solid rgba(224, 197, 132, 0.28);
  white-space: pre-wrap;
  word-break: break-word;
}

.rnr-ai-chat-message[data-role='assistant'] {
  background: rgba(224, 197, 132, 0.1);
}

.rnr-ai-chat-message[data-role='user'] {
  background: rgba(240, 226, 192, 0.08);
  max-width: 90%;
}

.rnr-ai-chat-message[data-role='system'] {
  background: rgba(146, 62, 32, 0.24);
  border-color: rgba(224, 130, 88, 0.45);
}

.rnr-ai-chat-inline-link {
  color: #f8e1b0;
  text-decoration: underline;
  text-underline-offset: 0.1rem;
  font-weight: 600;
}

.rnr-ai-chat-inline-link:hover,
.rnr-ai-chat-inline-link:focus-visible {
  color: #ffecc7;
}

.rnr-ai-chat-calendar-link-line {
  color: rgba(240, 226, 192, 0.82);
  font-size: 0.78rem;
  line-height: 1.3;
}

.rnr-ai-chat-calendar-link {
  appearance: none;
  background: transparent;
  border: 0;
  color: #f8e1b0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.rnr-ai-chat-calendar-link:hover,
.rnr-ai-chat-calendar-link:focus-visible {
  color: #ffecc7;
  outline: none;
}

.rnr-ai-chat-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.42rem;
  padding: 0.62rem;
  border-top: 1px solid rgba(224, 197, 132, 0.3);
}

.rnr-ai-chat-input {
  border: 1px solid rgba(224, 197, 132, 0.45);
  background: rgba(0, 0, 0, 0.45);
  color: #f0e2c0;
  padding: 0.42rem 0.52rem;
  font-size: 0.84rem;
}

.rnr-ai-chat-input::placeholder {
  color: rgba(240, 226, 192, 0.6);
}

.rnr-ai-chat-send {
  border: 1px solid #e0c584;
  background: #e0c584;
  color: #050505;
  font-weight: 700;
  padding: 0.42rem 0.62rem;
  font-size: 0.82rem;
  cursor: pointer;
}

.rnr-ai-chat-send[disabled],
.rnr-ai-chat-input[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.rnr-ai-chat-status {
  font-size: 0.8rem;
  color: rgba(240, 226, 192, 0.72);
  padding: 0 0.8rem 0.45rem;
  min-height: 2rem;
}

.rnr-ai-chat-status[data-loading='true'] {
  display: block;
}

.rnr-ai-chat-status-assistant {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.rnr-ai-chat-status-avatar {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(224, 197, 132, 0.36);
}

.rnr-ai-chat-status-text {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  flex-wrap: wrap;
}

.rnr-ai-chat-status-name {
  font-size: 0.7rem;
  color: rgba(240, 226, 192, 0.76);
  margin-right: 0.15rem;
}

.rnr-ai-chat-typing-label {
  letter-spacing: 0.01em;
}

.rnr-ai-chat-typing-dots {
  display: inline-flex;
  align-items: baseline;
  width: 1.2rem;
}

.rnr-ai-chat-typing-dots span {
  opacity: 0.2;
  animation: rnr-chat-typing-dot 1s infinite ease-in-out;
}

.rnr-ai-chat-typing-dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.rnr-ai-chat-typing-dots span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes rnr-chat-typing-dot {
  0%,
  70%,
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }

  35% {
    opacity: 0.9;
    transform: translateY(-1px);
  }
}

.rnr-ai-chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  padding: 0 0.62rem 0.5rem;
}

.rnr-ai-chat-quick {
  border: 1px solid rgba(224, 197, 132, 0.35);
  background: rgba(224, 197, 132, 0.08);
  color: #f0e2c0;
  font-size: 0.72rem;
  padding: 0.24rem 0.3rem;
  cursor: pointer;
}

.rnr-ai-chat-quick:hover {
  background: rgba(224, 197, 132, 0.16);
  transform: translateY(-1px);
}

.rnr-ai-chat-quick:focus-visible {
  outline: 2px solid #e0c584;
  outline-offset: 2px;
}

.rnr-ai-chat-presets {
  display: none;
  flex-wrap: wrap;
  gap: 0.32rem;
  padding: 0 0.62rem 0.5rem;
}

.rnr-ai-chat-presets[hidden],
.rnr-ai-chat-presets:not([data-open='true']) {
  display: none !important;
}

.rnr-ai-chat-presets[data-open='true'] {
  display: flex;
}

.rnr-ai-chat-preset {
  border: 1px solid rgba(224, 197, 132, 0.35);
  background: rgba(240, 226, 192, 0.08);
  color: #f0e2c0;
  font-size: 0.72rem;
  padding: 0.24rem 0.42rem;
  cursor: pointer;
}

.rnr-ai-chat-preset:hover {
  background: rgba(240, 226, 192, 0.16);
  transform: translateY(-1px);
}

.rnr-ai-chat-preset:focus-visible {
  outline: 2px solid #e0c584;
  outline-offset: 2px;
}

.rnr-ai-chat-card {
  width: min(100%, 100%);
  max-width: 100%;
  border: 1px solid rgba(224, 197, 132, 0.3);
  background: rgba(240, 226, 192, 0.07);
  padding: 0.52rem;
  display: grid;
  gap: 0.44rem;
  overflow: hidden;
}

.rnr-ai-chat-card-title {
  color: #e0c584;
  font-size: 0.78rem;
  font-weight: 700;
}

.rnr-ai-chat-card-copy {
  font-size: 0.8rem;
  line-height: 1.32;
}

.rnr-ai-chat-card label,
.rnr-ai-chat-modal label {
  display: grid;
  gap: 0.2rem;
  font-size: 0.72rem;
  color: rgba(240, 226, 192, 0.82);
}

.rnr-ai-chat-card input,
.rnr-ai-chat-card textarea,
.rnr-ai-chat-modal input,
.rnr-ai-chat-modal select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(224, 197, 132, 0.38);
  background: rgba(0, 0, 0, 0.42);
  color: #f0e2c0;
  padding: 0.38rem 0.46rem;
  font: inherit;
}

.rnr-ai-chat-card textarea {
  min-height: 3.5rem;
  resize: vertical;
}

.rnr-ai-chat-choice-group {
  border: 1px solid rgba(224, 197, 132, 0.24);
  display: flex;
  gap: 0.55rem;
  margin: 0;
  padding: 0.5rem 0.58rem 0.58rem;
}

.rnr-ai-chat-choice-group legend {
  color: rgba(224, 197, 132, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0 0.25rem;
  text-transform: uppercase;
}

.rnr-ai-chat-choice-group label {
  align-items: center;
  display: inline-flex;
  flex-direction: row;
  gap: 0.35rem;
}

.rnr-ai-chat-choice-group input {
  width: auto;
}

.rnr-ai-chat-form-error {
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
  font-size: 0.78rem;
  line-height: 1.35;
  padding: 0.6rem 0.7rem;
}

.rnr-ai-chat-subtitle {
  margin-top: 0.25rem;
}

.rnr-ai-chat-attendee {
  border-top: 1px solid rgba(224, 197, 132, 0.18);
  display: grid;
  gap: 0.65rem;
  padding-top: 0.75rem;
}

.rnr-ai-chat-summary-list {
  display: grid;
  gap: 0.35rem 0.75rem;
  grid-template-columns: minmax(5.5rem, 0.42fr) 1fr;
  margin: 0;
}

.rnr-ai-chat-summary-list dt {
  color: rgba(244, 234, 209, 0.64);
  font-size: 0.76rem;
}

.rnr-ai-chat-summary-list dd {
  color: #fff7e6;
  font-size: 0.78rem;
  margin: 0;
  overflow-wrap: anywhere;
}

.rnr-ai-chat-travel-fee-note {
  color: #e0c584;
  font-weight: 700;
}

.rnr-ai-chat-attendee-list {
  color: #fff7e6;
  font-size: 0.78rem;
  margin: 0;
  padding-left: 1rem;
}

.rnr-ai-chat-warning {
  border-top: 1px solid rgba(224, 197, 132, 0.18);
  padding-top: 0.65rem;
}

.rnr-ai-chat-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(5.25rem, 0.55fr);
  gap: 0.45rem;
}

.rnr-ai-chat-address-card .rnr-ai-chat-field-row {
  grid-template-columns: minmax(0, 1fr) minmax(4.75rem, 0.5fr);
}

.rnr-ai-chat-card-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.rnr-ai-chat-primary,
.rnr-ai-chat-secondary,
.rnr-ai-chat-slot,
.rnr-ai-chat-day {
  border: 1px solid #e0c584;
  cursor: pointer;
  font: inherit;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    filter 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.rnr-ai-chat-primary {
  background: #e0c584;
  color: #050505;
  font-weight: 700;
  padding: 0.32rem 0.5rem;
}

.rnr-ai-chat-secondary,
.rnr-ai-chat-slot,
.rnr-ai-chat-day {
  background: rgba(224, 197, 132, 0.08);
  color: #f0e2c0;
  padding: 0.28rem 0.42rem;
}

.rnr-ai-chat-slot,
.rnr-ai-chat-day {
  text-align: left;
}

.rnr-ai-chat-slot {
  font-size: 0.76rem;
  min-height: 1.72rem;
}

.rnr-ai-chat-primary:hover,
.rnr-ai-chat-secondary:hover,
.rnr-ai-chat-slot:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.rnr-ai-chat-day:hover {
  filter: brightness(1.06);
}

.rnr-ai-chat-primary:active,
.rnr-ai-chat-secondary:active,
.rnr-ai-chat-slot:active,
.rnr-ai-chat-day:active,
.rnr-ai-chat-send:active,
.rnr-ai-chat-quick:active,
.rnr-ai-chat-preset:active,
.rnr-ai-chat-action:active,
.rnr-ai-chat-calendar-nav-btn:active {
  transform: translateY(1px) scale(0.99);
}

.rnr-ai-chat-primary:focus-visible,
.rnr-ai-chat-secondary:focus-visible,
.rnr-ai-chat-slot:focus-visible,
.rnr-ai-chat-day:focus-visible {
  outline: 2px solid #e0c584;
  outline-offset: 2px;
}

.rnr-ai-chat-primary:disabled,
.rnr-ai-chat-secondary:disabled,
.rnr-ai-chat-slot:disabled,
.rnr-ai-chat-day:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.rnr-ai-chat-slot-loading {
  position: relative;
  background: rgba(224, 197, 132, 0.92) !important;
  color: #050505 !important;
  opacity: 1 !important;
  padding-right: 2.25rem !important;
}

.rnr-ai-chat-slot-loading::after {
  animation: rnrAiSpin 720ms linear infinite;
  border: 2px solid rgba(5, 5, 5, 0.28);
  border-top-color: #050505;
  border-radius: 999px;
  content: "";
  height: 0.78rem;
  position: absolute;
  right: 0.72rem;
  top: calc(50% - 0.39rem);
  width: 0.78rem;
}

@media (min-width: 769px) {
  .rnr-ai-chat-panel {
    width: min(25rem, calc(100vw - 1.5rem));
    height: min(42rem, calc(100vh - 3.5rem));
  }

  .rnr-ai-chat-header {
    padding: 0.5rem 0.62rem;
  }

  .rnr-ai-chat-header-avatar {
    width: 1.65rem;
    height: 1.65rem;
  }

  .rnr-ai-chat-title {
    font-size: 0.82rem;
  }

  .rnr-ai-chat-subtitle {
    font-size: 0.62rem;
  }

  .rnr-ai-chat-action {
    min-width: 1.55rem;
    height: 1.55rem;
  }

  .rnr-ai-chat-end {
    font-size: 0.64rem;
    min-width: 2.2rem;
    padding-inline: 0.34rem;
  }

  .rnr-ai-chat-messages {
    gap: 0.48rem;
    padding: 0.54rem;
  }

  .rnr-ai-chat-avatar {
    width: 1.18rem;
    height: 1.18rem;
  }

  .rnr-ai-chat-message-content {
    max-width: calc(100% - 1.7rem);
  }

  .rnr-ai-chat-message-name {
    font-size: 0.58rem;
    margin-bottom: 0.12rem;
  }

  .rnr-ai-chat-message {
    font-size: 0.76rem;
    line-height: 1.25;
    padding: 0.32rem 0.42rem;
  }

  .rnr-ai-chat-card {
    gap: 0.36rem;
    padding: 0.42rem;
  }

  .rnr-ai-chat-card-title {
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .rnr-ai-chat-card-copy,
  .rnr-ai-chat-form-error {
    font-size: 0.72rem;
    line-height: 1.24;
  }

  .rnr-ai-chat-card label,
  .rnr-ai-chat-modal label {
    gap: 0.16rem;
    font-size: 0.64rem;
  }

  .rnr-ai-chat-card input,
  .rnr-ai-chat-card textarea,
  .rnr-ai-chat-modal input,
  .rnr-ai-chat-modal select {
    font-size: 0.74rem;
    min-height: 1.72rem;
    padding: 0.25rem 0.36rem;
  }

  .rnr-ai-chat-card textarea {
    min-height: 2.75rem;
  }

  .rnr-ai-chat-summary-list {
    gap: 0.22rem 0.48rem;
    grid-template-columns: minmax(4.4rem, 0.4fr) minmax(0, 1fr);
  }

  .rnr-ai-chat-summary-list dt,
  .rnr-ai-chat-summary-list dd,
  .rnr-ai-chat-attendee-list {
    font-size: 0.7rem;
    line-height: 1.18;
  }

  .rnr-ai-chat-warning {
    padding-top: 0.42rem;
  }

  .rnr-ai-chat-card-actions {
    gap: 0.28rem;
  }

  .rnr-ai-chat-primary,
  .rnr-ai-chat-secondary,
  .rnr-ai-chat-slot {
    font-family: inherit;
    font-size: 0.72rem;
    line-height: 1.05;
    min-height: 1.62rem;
    padding: 0.26rem 0.4rem;
  }

  .rnr-ai-chat-summary-actions .rnr-ai-chat-primary,
  .rnr-ai-chat-summary-actions .rnr-ai-chat-secondary {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
  }

  .rnr-ai-chat-slot {
    min-height: 1.46rem;
  }

  .rnr-ai-chat-slots-card {
    gap: 0.3rem;
  }

  .rnr-ai-chat-status {
    font-size: 0.7rem;
    min-height: 1.1rem;
    padding: 0 0.54rem 0.22rem;
  }

  .rnr-ai-chat-status-avatar,
  .rnr-ai-chat-status-name {
    display: none;
  }

  .rnr-ai-chat-quick-actions,
  .rnr-ai-chat-presets {
    gap: 0.24rem;
    padding-inline: 0.54rem;
    padding-bottom: 0.34rem;
  }

  .rnr-ai-chat-quick,
  .rnr-ai-chat-preset {
    font-size: 0.64rem;
    padding: 0.2rem 0.34rem;
  }

  .rnr-ai-chat-compose {
    gap: 0.34rem;
    padding: 0.5rem 0.54rem;
  }

  .rnr-ai-chat-input,
  .rnr-ai-chat-send {
    font-size: 0.74rem;
    padding: 0.34rem 0.45rem;
  }
}

.rnr-ai-chat-stripe-card {
  gap: 0.7rem;
}

.rnr-ai-chat-stripe-inline {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.45rem;
}

.rnr-ai-chat-travel-warning {
  background: rgba(245, 158, 11, 0.16);
  border: 2px solid rgba(251, 191, 36, 0.72);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.12);
  color: #f8e1b0;
  padding: 0.62rem;
}

.rnr-ai-chat-travel-kicker {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.48);
  color: #fde68a;
  display: inline-flex;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.42rem;
  padding: 0.18rem 0.38rem;
  text-transform: uppercase;
}

.rnr-ai-chat-travel-title {
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.28rem;
}

.rnr-ai-chat-travel-copy {
  color: rgba(255, 247, 237, 0.92);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.38;
}

.rnr-ai-chat-stripe-inline-box {
  background: rgba(224, 197, 132, 0.06);
  border: 2px solid rgba(224, 197, 132, 0.3);
  display: grid;
  gap: 0.52rem;
  padding: 0.62rem;
}

.rnr-ai-chat-stripe-ribbon {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}

.rnr-ai-chat-stripe-check {
  align-items: center;
  background: rgba(74, 222, 128, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.58);
  color: #b9f6c8;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.05rem;
  font-weight: 800;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.rnr-ai-chat-stripe-card-complete {
  border-color: rgba(74, 222, 128, 0.62);
}

.rnr-ai-chat-stripe-element {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 197, 132, 0.42);
  padding: 0.55rem;
  min-height: 2.55rem;
}

.rnr-ai-chat-stripe-postal {
  margin-top: 0.1rem;
}

.rnr-ai-chat-stripe-help {
  color: rgba(240, 226, 192, 0.68);
  font-size: 0.72rem;
}

.rnr-ai-chat-booking-modal-overlay {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.94);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  z-index: 320;
}

.rnr-ai-chat-booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.rnr-ai-chat-booking-modal-overlay [hidden] {
  display: none !important;
}

.rnr-ai-chat-booking-modal-card {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.99));
  border: 1px solid rgba(224, 197, 132, 0.3);
  max-height: min(82vh, 560px);
  max-width: 400px;
  overflow-y: auto;
  padding: 3rem 2.5rem 28px;
  position: relative;
  text-align: center;
  width: min(90vw, 400px);
}

.rnr-ai-chat-booking-modal-card::before {
  background: linear-gradient(90deg, transparent, #e0c584, transparent);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.rnr-ai-chat-booking-spinner {
  animation: rnrAiBookingSpin 1s linear infinite;
  border: 3px solid rgba(224, 197, 132, 0.2);
  border-radius: 50%;
  border-top-color: #e0c584;
  height: 60px;
  margin: 0 auto 1.5rem;
  width: 60px;
}

.rnr-ai-chat-booking-success-icon,
.rnr-ai-chat-booking-error-icon {
  align-items: center;
  animation: rnrAiBookingSuccessPop 0.4s ease;
  border-radius: 50%;
  display: flex;
  height: 70px;
  justify-content: center;
  margin: 0 auto 1.5rem;
  width: 70px;
}

.rnr-ai-chat-booking-success-icon {
  border: 3px solid #4ade80;
}

.rnr-ai-chat-booking-error-icon {
  border: 3px solid #f87171;
}

.rnr-ai-chat-booking-status {
  color: #e0c584;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-height: 2rem;
}

.rnr-ai-chat-booking-substatus {
  color: rgba(240, 226, 192, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.rnr-ai-chat-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.rnr-ai-chat-booking-home-btn {
  align-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(224, 197, 132, 0.55);
  border-radius: 999px;
  color: #e0c584;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.82rem;
  justify-content: center;
  letter-spacing: 0.14em;
  padding: 0.55rem 0.95rem;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.rnr-ai-chat-booking-home-btn:hover {
  background: rgba(224, 197, 132, 0.08);
  box-shadow: 0 0 0 3px rgba(224, 197, 132, 0.12);
  transform: translateY(-1px);
}

.rnr-ai-chat-booking-hint {
  color: rgba(240, 226, 192, 0.62);
  font-size: 0.78rem;
  margin-top: 0.9rem;
}

@keyframes rnrAiBookingSpin {
  to { transform: rotate(360deg); }
}

@keyframes rnrAiBookingSuccessPop {
  0% { opacity: 0; transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.rnr-ai-chat-slots-card {
  align-items: stretch;
}

.rnr-ai-chat-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483400;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 1rem;
  animation: rnrAiFadeIn 180ms ease-out;
}

.rnr-ai-chat-modal {
  width: min(68rem, calc(100vw - 1.25rem));
  max-height: min(54rem, calc(100vh - 1.25rem));
  overflow-x: hidden;
  overflow-y: auto;
  background: #050505;
  border: 1px solid rgba(224, 197, 132, 0.42);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  animation: rnrAiModalIn 220ms ease-out;
}

.rnr-ai-chat-modal,
.rnr-ai-chat-modal * {
  box-sizing: border-box;
}

.rnr-ai-chat-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0.95rem;
  border-bottom: 1px solid rgba(224, 197, 132, 0.28);
}

.rnr-ai-chat-modal-header h3 {
  margin: 0;
  font-size: 0.98rem;
  color: #e0c584;
}

.rnr-ai-chat-modal-body {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.78rem;
}

.rnr-ai-chat-details-modal {
  width: min(36rem, calc(100vw - 1.25rem));
}

.rnr-ai-chat-details-modal .rnr-ai-chat-details-card {
  border: 0;
  box-shadow: none;
  max-height: min(46rem, calc(100vh - 1.5rem));
  overflow-y: auto;
  padding: 0.82rem;
}

.rnr-ai-chat-details-modal-header {
  margin: -0.82rem -0.82rem 0;
}

.rnr-ai-chat-modal-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(6rem, 0.7fr) minmax(4.5rem, 0.45fr);
  gap: 0.45rem;
  min-width: 0;
}

.rnr-ai-chat-modal-fields > label {
  min-width: 0;
}

.rnr-ai-chat-modal label {
  font-size: 0.7rem;
}

.rnr-ai-chat-modal input,
.rnr-ai-chat-modal select {
  font-size: 0.78rem;
  padding: 0.38rem 0.48rem;
}

.rnr-ai-chat-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.28rem;
}

.rnr-ai-chat-modal-slots {
  min-height: 2rem;
  font-size: 0.86rem;
  color: rgba(240, 226, 192, 0.82);
}

.rnr-ai-chat-calendar-shell {
  display: grid;
  gap: 0.48rem;
}

.rnr-ai-chat-calendar-toolbar {
  align-items: center;
  display: flex;
  gap: 0.6rem;
  justify-content: space-between;
}

.rnr-ai-chat-calendar-nav {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.rnr-ai-chat-calendar-nav-btn {
  align-items: center;
  background: rgba(224, 197, 132, 0.08);
  border: 1px solid rgba(224, 197, 132, 0.34);
  color: #e0c584;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.15rem;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  width: 2rem;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.rnr-ai-chat-calendar-nav-btn:hover {
  background: rgba(224, 197, 132, 0.16);
  border-color: rgba(224, 197, 132, 0.75);
  transform: translateY(-1px);
}

.rnr-ai-chat-calendar-month {
  color: #fff7e6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  min-width: 10rem;
  text-align: center;
}

.rnr-ai-chat-calendar-legend {
  color: rgba(240, 226, 192, 0.62);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.62rem;
  font-weight: 700;
  gap: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rnr-ai-chat-calendar-legend span {
  align-items: center;
  display: inline-flex;
  gap: 0.3rem;
}

.rnr-ai-chat-calendar-legend i {
  border: 1px solid rgba(224, 197, 132, 0.28);
  display: inline-block;
  height: 0.8rem;
  width: 0.8rem;
}

.rnr-ai-chat-legend-open {
  background: rgba(224, 197, 132, 0.12);
  border-color: rgba(224, 197, 132, 0.62) !important;
}

.rnr-ai-chat-legend-selected {
  background: rgba(224, 197, 132, 0.3);
  border-color: #e0c584 !important;
}

.rnr-ai-chat-weekdays {
  color: rgba(224, 197, 132, 0.72);
  display: grid;
  font-size: 0.62rem;
  font-weight: 700;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rnr-ai-chat-weekdays span {
  padding: 0.22rem 0;
  text-align: center;
}

.rnr-ai-chat-day {
  align-items: center;
  aspect-ratio: 1 / 0.54;
  background: rgba(224, 197, 132, 0.05);
  border-color: rgba(224, 197, 132, 0.28);
  color: #f0e2c0;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  font-size: 0.78rem;
  min-height: 1.72rem;
  padding: 0.14rem;
  position: relative;
  text-align: center;
}

.rnr-ai-chat-day-checkable {
  border-color: rgba(224, 197, 132, 0.48);
}

.rnr-ai-chat-day-checkable:hover {
  background: rgba(224, 197, 132, 0.14);
  border-color: rgba(224, 197, 132, 0.78);
  box-shadow: inset 0 0 0 1px rgba(224, 197, 132, 0.16);
  transform: none;
}

.rnr-ai-chat-day-disabled {
  cursor: not-allowed;
  opacity: 0.26;
}

.rnr-ai-chat-day-selected {
  background: rgba(255, 215, 101, 0.3);
  border-color: #ffd765;
  box-shadow: 0 0 0 2px rgba(255, 215, 101, 0.2);
}

.rnr-ai-chat-day-today {
  border-color: #ffd765;
  box-shadow:
    inset 0 0 0 1px rgba(255, 215, 101, 0.55),
    0 0 14px rgba(255, 215, 101, 0.22);
}

.rnr-ai-chat-day-today::after {
  background: #fff4a8;
  border-radius: 999px;
  bottom: 0.18rem;
  box-shadow: 0 0 9px rgba(255, 244, 168, 0.95);
  content: "";
  height: 0.42rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0.42rem;
}

.rnr-ai-chat-day-loading {
  color: transparent;
  overflow: hidden;
}

.rnr-ai-chat-day-loading::before {
  animation: rnrAiSpin 700ms linear infinite;
  border: 2px solid rgba(224, 197, 132, 0.28);
  border-top-color: #e0c584;
  border-radius: 999px;
  content: "";
  height: 1rem;
  position: absolute;
  width: 1rem;
}

.rnr-ai-chat-calendar-status {
  background: rgba(224, 197, 132, 0.06);
  border: 1px solid rgba(224, 197, 132, 0.14);
  color: rgba(240, 226, 192, 0.82);
  font-size: 0.78rem;
  line-height: 1.32;
  padding: 0.55rem 0.65rem;
}

.rnr-ai-chat-calendar-status[data-error='true'] {
  border-color: rgba(248, 113, 113, 0.42);
  color: #fecaca;
}

.rnr-ai-chat-modal-address-summary {
  align-items: center;
  background: rgba(240, 226, 192, 0.06);
  border: 1px solid rgba(224, 197, 132, 0.22);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 0.55rem 0.65rem;
}

.rnr-ai-chat-modal-address-summary strong,
.rnr-ai-chat-modal-address-summary span {
  display: block;
}

.rnr-ai-chat-modal-address-summary strong {
  color: #e0c584;
  font-size: 0.74rem;
}

.rnr-ai-chat-modal-address-summary span {
  color: #fff7e6;
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.rnr-ai-chat-modal-slot-panel {
  border-top: 1px solid rgba(224, 197, 132, 0.2);
  display: grid;
  gap: 0.55rem;
  padding-top: 0.62rem;
}

.rnr-ai-chat-modal-slot-kicker {
  color: #e0c584;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rnr-ai-chat-modal-slot-subtitle {
  color: rgba(240, 226, 192, 0.72);
  font-size: 0.74rem;
  margin-top: 0.12rem;
}

.rnr-ai-chat-modal-slot-grid {
  display: grid;
  gap: 0.24rem;
  grid-template-columns: repeat(auto-fit, minmax(4.25rem, 1fr));
}

.rnr-ai-chat-modal-slot {
  align-items: center;
  background: rgba(224, 197, 132, 0.08);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  font-size: 0.72rem;
  min-height: 1.55rem;
  padding: 0.22rem 0.3rem;
  text-align: center;
}

.rnr-ai-chat-modal-slot:hover {
  background: rgba(224, 197, 132, 0.16);
  box-shadow: inset 0 0 0 1px rgba(224, 197, 132, 0.18);
  transform: none;
}

.rnr-ai-chat-slot-selected {
  background: #e0c584 !important;
  color: #050505 !important;
  transform: scale(0.98);
}

@keyframes rnrAiFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rnrAiModalIn {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rnrAiSpin {
  to { transform: rotate(360deg); }
}

.pac-container {
  background: rgba(7, 7, 7, 0.98) !important;
  border: 1px solid rgba(224, 197, 132, 0.45) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55) !important;
  color: #f0e2c0 !important;
  z-index: 2147483647 !important;
  box-sizing: border-box;
}

.pac-container.rnr-ai-chat-pac-container {
  margin-top: 0 !important;
  pointer-events: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
}

.pac-item {
  border-top: 1px solid rgba(224, 197, 132, 0.12) !important;
  color: #f0e2c0 !important;
  cursor: pointer;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(224, 197, 132, 0.12) !important;
}

.pac-item-query,
.pac-matched {
  color: #e0c584 !important;
}

@media (max-width: 768px) {
  .rnr-ai-chat-root {
    left: auto;
    right: 0.75rem;
    transform: none;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.75rem);
  }

  .rnr-ai-chat-root[data-chat-open='true'] {
    inset: 0;
    width: 100vw;
    height: var(--rnr-ai-chat-vvh, 100dvh);
    pointer-events: none;
  }

  .rnr-ai-chat-launcher {
    width: 3rem;
    height: 3rem;
  }

  .rnr-ai-chat-root[data-chat-open='true'] .rnr-ai-chat-launcher {
    display: none;
  }

  .rnr-ai-chat-launcher img {
    width: 3rem;
    height: 3rem;
  }

  .rnr-ai-chat-open-indicator {
    right: -0.2rem;
    top: -0.2rem;
    font-size: 0.52rem;
    padding: 0.08rem 0.3rem;
  }

  .rnr-ai-chat-panel {
    position: fixed;
    left: 0.35rem;
    right: 0.35rem;
    top: calc(var(--rnr-ai-chat-vvoffset-top, 0px) + env(safe-area-inset-top, 0px) + 0.35rem);
    bottom: auto;
    width: auto;
    height: calc(var(--rnr-ai-chat-vvh, 100dvh) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 0.7rem);
    max-height: none;
    transform: translateY(0.1rem);
    transform-origin: bottom center;
    pointer-events: auto;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto auto;
  }

  .rnr-ai-chat-panel[data-open='true'] {
    transform: none;
  }

  .rnr-ai-chat-header {
    gap: 0.34rem;
    min-height: 1.78rem;
    padding: 0.18rem 0.4rem;
  }

  .rnr-ai-chat-title {
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
  }

  .rnr-ai-chat-subtitle {
    display: none;
  }

  .rnr-ai-chat-header-avatar {
    width: 1.18rem;
    height: 1.18rem;
  }

  .rnr-ai-chat-action {
    height: 1.32rem;
    min-width: 1.32rem;
  }

  .rnr-ai-chat-end {
    font-size: 0.58rem;
    min-width: 1.78rem;
    padding-inline: 0.22rem;
  }

  .rnr-ai-chat-avatar {
    width: 1.25rem;
    height: 1.25rem;
  }

  .rnr-ai-chat-messages {
    gap: 0.45rem;
    padding: 0.5rem 0.55rem;
  }

  .rnr-ai-chat-row {
    gap: 0.34rem;
  }

  .rnr-ai-chat-message-content {
    max-width: calc(100% - 1.55rem);
  }

  .rnr-ai-chat-message-name {
    font-size: 0.62rem;
    margin-bottom: 0.12rem;
  }

  .rnr-ai-chat-message {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.28;
    padding: 0.36rem 0.45rem;
  }

  .rnr-ai-chat-card {
    gap: 0.42rem;
    padding: 0.48rem;
  }

  .rnr-ai-chat-card-title {
    font-size: 0.76rem;
  }

  .rnr-ai-chat-card-copy,
  .rnr-ai-chat-form-error {
    font-size: 0.74rem;
    font-weight: 600;
  }

  .rnr-ai-chat-card label,
  .rnr-ai-chat-modal label {
    gap: 0.18rem;
    font-size: 0.68rem;
  }

  .rnr-ai-chat-card input,
  .rnr-ai-chat-card textarea,
  .rnr-ai-chat-modal input,
  .rnr-ai-chat-modal select {
    font-size: 0.78rem;
    font-weight: 600;
    min-height: 1.86rem;
    padding: 0.28rem 0.38rem;
  }

  .rnr-ai-chat-field-row {
    grid-template-columns: 1fr;
    gap: 0.36rem;
  }

  .rnr-ai-chat-address-card .rnr-ai-chat-field-row {
    grid-template-columns: minmax(0, 1fr) minmax(4.4rem, 0.55fr);
  }

  .rnr-ai-chat-card-actions {
    gap: 0.34rem;
  }

  .rnr-ai-chat-primary,
  .rnr-ai-chat-secondary,
  .rnr-ai-chat-slot {
    font-size: 0.78rem;
    min-height: 2rem;
    padding: 0.36rem 0.48rem;
  }

  .rnr-ai-chat-summary-list {
    gap: 0.25rem 0.45rem;
    grid-template-columns: minmax(4.55rem, 0.44fr) minmax(0, 1fr);
  }

  .rnr-ai-chat-summary-list dt,
  .rnr-ai-chat-summary-list dd,
  .rnr-ai-chat-attendee-list {
    font-size: 0.72rem;
  }

  .rnr-ai-chat-status {
    font-size: 0.72rem;
    min-height: 1.45rem;
    padding: 0 0.55rem 0.32rem;
  }

  .rnr-ai-chat-quick-actions {
    display: grid;
    gap: 0.16rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 0.42rem 0.28rem;
  }

  .rnr-ai-chat-presets {
    display: none;
    gap: 0.22rem;
    padding: 0 0.55rem 0.28rem;
  }

  .rnr-ai-chat-presets[hidden],
  .rnr-ai-chat-presets:not([data-open='true']) {
    display: none !important;
  }

  .rnr-ai-chat-presets[data-open='true'] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rnr-ai-chat-quick,
  .rnr-ai-chat-preset {
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1.05;
    min-height: 1.38rem;
    padding: 0.18rem 0.1rem;
    text-align: center;
  }

  .rnr-ai-chat-compose {
    gap: 0.36rem;
    padding: 0.45rem 0.55rem calc(env(safe-area-inset-bottom, 0px) + 0.45rem);
  }

  .rnr-ai-chat-input,
  .rnr-ai-chat-send {
    min-height: 2rem;
  }

  .rnr-ai-chat-input {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.34rem 0.45rem;
  }

  .rnr-ai-chat-send {
    font-size: 0.68rem;
    padding: 0.34rem 0.48rem;
  }

  .rnr-ai-chat-modal-backdrop {
    align-items: stretch;
    padding: 0.25rem;
    place-items: stretch;
  }

  .rnr-ai-chat-modal {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: calc(var(--rnr-ai-chat-vvh, 100dvh) - 0.5rem);
    max-height: none;
    width: calc(100vw - 0.5rem);
    overflow: hidden;
  }

  .rnr-ai-chat-modal-header {
    padding: 0.45rem 0.55rem;
  }

  .rnr-ai-chat-modal-header h3 {
    font-size: 0.86rem;
  }

  .rnr-ai-chat-modal-body {
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0.42rem;
  }

  .rnr-ai-chat-modal-fields {
    display: grid;
    gap: 0.32rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(4.6rem, 0.62fr) minmax(3.35rem, 0.42fr);
  }

  .rnr-ai-chat-calendar-toolbar,
  .rnr-ai-chat-modal-address-summary {
    align-items: center;
    flex-direction: row;
  }

  .rnr-ai-chat-modal-address-summary {
    gap: 0.45rem;
    padding: 0.42rem 0.48rem;
  }

  .rnr-ai-chat-modal-address-summary strong {
    font-size: 0.66rem;
  }

  .rnr-ai-chat-modal-address-summary span {
    font-size: 0.74rem;
  }

  .rnr-ai-chat-calendar-nav {
    justify-content: center;
    gap: 0.3rem;
  }

  .rnr-ai-chat-calendar-nav-btn {
    font-size: 1rem;
    height: 1.7rem;
    width: 1.7rem;
  }

  .rnr-ai-chat-calendar-month {
    font-size: 0.82rem;
    min-width: 7.2rem;
  }

  .rnr-ai-chat-calendar-legend {
    display: none;
  }

  .rnr-ai-chat-weekdays {
    font-size: 0.52rem;
    letter-spacing: 0.05em;
  }

  .rnr-ai-chat-weekdays span {
    padding: 0.1rem 0;
  }

  .rnr-ai-chat-calendar-days {
    gap: 0.16rem;
  }

  .rnr-ai-chat-day {
    aspect-ratio: 1 / 0.48;
    font-size: 0.66rem;
    min-height: 1.28rem;
    padding: 0.05rem;
  }

  .rnr-ai-chat-day-today::after {
    bottom: 0.08rem;
    height: 0.24rem;
    width: 0.24rem;
  }

  .rnr-ai-chat-day-loading::before {
    height: 0.8rem;
    width: 0.8rem;
  }

  .rnr-ai-chat-calendar-status {
    font-size: 0.7rem;
    line-height: 1.24;
    padding: 0.38rem 0.45rem;
  }

  .rnr-ai-chat-modal-slot-panel {
    gap: 0.36rem;
    padding-top: 0.42rem;
  }

  .rnr-ai-chat-modal-slot-kicker {
    font-size: 0.56rem;
  }

  .rnr-ai-chat-modal-slot-subtitle {
    font-size: 0.66rem;
  }

  .rnr-ai-chat-modal-slot-grid {
    gap: 0.22rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rnr-ai-chat-modal-slot {
    font-size: 0.7rem;
    min-height: 1.7rem;
    padding: 0.22rem 0.26rem;
  }

  .pac-container {
    max-width: calc(100vw - 1rem) !important;
    z-index: 2147483647 !important;
  }

  .pac-item {
    font-size: 0.78rem !important;
    line-height: 1.95rem !important;
    padding: 0.12rem 0.45rem !important;
  }

  .rnr-ai-chat-root[data-chat-open='true'] .rnr-ai-chat-jump-latest:not([hidden]) {
    align-items: center;
    animation: rnrAiJumpLatest 1.4s ease-in-out infinite;
    align-self: center;
    background: rgba(224, 197, 132, 0.92);
    border: 1px solid rgba(255, 236, 199, 0.8);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
    color: #060606;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 900;
    height: 1.72rem;
    justify-content: center;
    margin: -0.24rem auto 0.22rem;
    padding: 0;
    position: relative;
    width: 1.72rem;
    z-index: 2;
  }
}

@keyframes rnrAiJumpLatest {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rnr-ai-chat-root,
  .rnr-ai-chat-panel,
  .rnr-ai-chat-launcher,
  .rnr-ai-chat-action,
  .rnr-ai-chat-send,
  .rnr-ai-chat-jump-latest,
  .rnr-ai-chat-modal-backdrop,
  .rnr-ai-chat-modal,
  .rnr-ai-chat-typing-dots span {
    transition: none !important;
    animation: none !important;
  }
}
