.five-star-concierge-launcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  border: 1px solid rgba(176, 132, 85, 0.58);
  background: #0F1419;
  color: #F7F4EE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 48px rgba(15, 20, 25, 0.34);
  cursor: pointer;
}

.five-star-concierge-launcher:hover {
  background: #B08455;
  color: #0F1419;
}

.five-star-concierge-launcher iconify-icon {
  font-size: 1.55rem;
}

.five-star-concierge-panel {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 81;
  width: min(24rem, calc(100vw - 2rem));
  max-height: min(42rem, calc(100vh - 7rem));
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 20, 25, 0.16);
  background: #F7F4EE;
  box-shadow: 0 28px 70px rgba(15, 20, 25, 0.28);
}

.five-star-concierge-panel.open {
  display: flex;
}

.five-star-concierge-header {
  padding: 1rem;
  background: #0F1419;
  color: #F7F4EE;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.five-star-concierge-header strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.five-star-concierge-header small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(247, 244, 238, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.five-star-concierge-close {
  color: #F7F4EE;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.82;
  cursor: pointer;
}

.five-star-concierge-body {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.five-star-concierge-status,
.five-star-concierge-hint {
  color: #5A6370;
  font-size: 0.76rem;
  line-height: 1.55;
}

.five-star-concierge-messages {
  min-height: 17rem;
  max-height: 22rem;
  overflow-y: auto;
  padding: 0.85rem;
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(15, 20, 25, 0.1);
  background: #FFFFFF;
}

.five-star-concierge-msg {
  max-width: 88%;
  padding: 0.75rem 0.85rem;
  font-size: 0.86rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.five-star-concierge-msg.assistant {
  justify-self: start;
  background: rgba(15, 20, 25, 0.07);
  color: #0F1419;
}

.five-star-concierge-msg.user {
  justify-self: end;
  background: #0F1419;
  color: #FFFFFF;
}

.five-star-concierge-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

.five-star-concierge-input {
  min-height: 3rem;
  border: 1px solid rgba(15, 20, 25, 0.14);
  background: #FFFFFF;
  color: #0F1419;
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  outline: none;
}

.five-star-concierge-input:focus {
  border-color: #B08455;
}

.five-star-concierge-send {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background: #B08455;
  color: #0F1419;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.five-star-concierge-send:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .five-star-concierge-launcher {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .five-star-concierge-panel {
    right: 0.85rem;
    left: 0.85rem;
    bottom: 5.25rem;
    width: auto;
  }
}
