/* [project]/app/components/ChatInterface.module.css [app-client] (css) */
.ChatInterface-module__WixlvW__chatContainer {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  flex-direction: column;
  max-width: 800px;
  height: 80vh;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 32px #0000004d;
}

.ChatInterface-module__WixlvW__messagesArea {
  scroll-behavior: smooth;
  flex-direction: column;
  flex: 1;
  gap: 15px;
  padding: 20px;
  display: flex;
  overflow-y: auto;
}

.ChatInterface-module__WixlvW__message {
  margin-bottom: 5px;
  display: flex;
}

.ChatInterface-module__WixlvW__user {
  justify-content: flex-end;
}

.ChatInterface-module__WixlvW__bot {
  justify-content: flex-start;
}

.ChatInterface-module__WixlvW__bubble {
  word-wrap: break-word;
  border-radius: 18px;
  max-width: 100%;
  padding: 12px 18px;
  font-size: .95rem;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 2px 5px #0000001a;
}

.ChatInterface-module__WixlvW__user .ChatInterface-module__WixlvW__bubble {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.ChatInterface-module__WixlvW__bot .ChatInterface-module__WixlvW__bubble {
  color: var(--foreground);
  background: #ffffff1a;
  border: 1px solid #ffffff1a;
  border-bottom-left-radius: 4px;
}

.ChatInterface-module__WixlvW__inputArea {
  background: #0003;
  border-top: 1px solid #ffffff0d;
  gap: 10px;
  padding: 20px;
  display: flex;
}

.ChatInterface-module__WixlvW__thinking {
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 50px;
  font-style: italic;
  display: flex;
  color: #fff9 !important;
}

.ChatInterface-module__WixlvW__dot {
  font-size: 20px;
  line-height: 10px;
  animation: 1.5s ease-in-out infinite ChatInterface-module__WixlvW__pulse;
}

.ChatInterface-module__WixlvW__dot:nth-child(2) {
  animation-delay: .2s;
}

.ChatInterface-module__WixlvW__dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes ChatInterface-module__WixlvW__fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ChatInterface-module__WixlvW__messageContent {
  flex-direction: column;
  gap: 10px;
  max-width: 92%;
  display: flex;
}

.ChatInterface-module__WixlvW__recommendationGrid {
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.ChatInterface-module__WixlvW__card {
  background: #ffffff14;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  width: 100%;
  padding: 15px;
  transition: transform .2s;
  animation: .5s ChatInterface-module__WixlvW__fadeIn;
}

.ChatInterface-module__WixlvW__card:hover {
  background: #ffffff1f;
  transform: translateY(-2px);
}

.ChatInterface-module__WixlvW__cardHeader {
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 8px;
  display: flex;
}

.ChatInterface-module__WixlvW__cardHeader h4 {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.ChatInterface-module__WixlvW__priceTag {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-end;
  padding: 2px 8px;
  font-size: .9rem;
  font-weight: bold;
  display: flex;
}

.ChatInterface-module__WixlvW__subPrice {
  opacity: .8;
  margin-left: 5px;
  font-size: .8rem;
}

.ChatInterface-module__WixlvW__description {
  color: #fffc;
  margin-bottom: 12px;
  font-size: .9rem;
  font-style: italic;
}

.ChatInterface-module__WixlvW__itemsList {
  border-top: 1px solid #ffffff1a;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  padding-top: 10px;
  display: flex;
}

.ChatInterface-module__WixlvW__itemRow {
  flex-direction: column;
  display: flex;
}

.ChatInterface-module__WixlvW__itemMain {
  justify-content: space-between;
  align-items: baseline;
  display: flex;
}

.ChatInterface-module__WixlvW__itemName {
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
}

.ChatInterface-module__WixlvW__itemPrice {
  color: #facc15;
  font-family: monospace;
  font-size: 1rem;
  font-weight: bold;
}

.ChatInterface-module__WixlvW__itemDesc {
  color: #fff9;
  font-size: .85rem;
  line-height: 1.3;
}

.ChatInterface-module__WixlvW__reasonBlock {
  color: #ffffffe6;
  background: #0003;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: .9rem;
  font-style: italic;
}

@keyframes ChatInterface-module__WixlvW__pulse {
  0%, 100% {
    opacity: .3;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/*# sourceMappingURL=app_components_ChatInterface_module_461bc24f.css.map*/