[data-ai-concierge] {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
  font-family: inherit;
}
.ai-concierge-launcher {
  border: 1px solid rgba(217, 200, 170, 0.7);
  border-radius: 999px;
  background: #1f4b43;
  color: #fff;
  padding: 0.75rem 1.25rem;
  min-height: 48px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ai-concierge-launcher:hover {
  background: #163832;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.ai-concierge-panel {
  width: min(24rem, calc(100vw - 2rem));
  max-height: min(38rem, calc(100vh - 2rem));
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #202020;
  border: 1px solid #d9c8aa;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.ai-concierge-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: #f4ead7;
}
.ai-concierge-panel h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1f4b43;
}
.ai-concierge-close,
.ai-concierge-actions button,
.ai-concierge-actions a,
.ai-concierge-form button {
  min-height: 44px;
  border: 1px solid #1f4b43;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  color: #1f4b43;
  background: #fff;
  text-decoration: none;
}
.ai-concierge-controls {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.ai-concierge-controls select,
.ai-concierge-form input {
  min-height: 44px;
  border: 1px solid #aaa;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.ai-concierge-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1rem;
  min-height: 10rem;
}
.ai-concierge-message {
  white-space: pre-wrap;
  margin: 0.5rem 0;
  line-height: 1.45;
}
.ai-concierge-message.user {
  text-align: right;
  color: #1f4b43;
}
.ai-concierge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
}
.ai-concierge-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
}
.ai-concierge-form input {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  [data-ai-concierge] {
    left: 1rem;
    bottom: 4.75rem;
    right: auto;
  }
  .ai-concierge-panel {
    position: fixed;
    inset: auto 0 0 0;
    width: 100%;
    max-height: 85vh;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
