/* BASIC css start */
#ai-chatbot-icon-wrapper {
  position: fixed;
  right: 60px;
  bottom: 210px;
  z-index: 2147483647;
  cursor: pointer;
}
#ai-chatbot-icon-wrapper img {
  width: 42px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#ai-chatbot-window {
  display: none;
  position: fixed;
  right: 60px;
  bottom: 80px;
  width: 430px;
  height: 570px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2147483647;
  flex-direction: column;
  overflow: hidden;
  font-family: sans-serif;
}

.chat-header {
  background: #1b2c44;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#ai-chatbot-close-btn {
  background: none;
  border: 0;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

#ai-chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bot-message {
  background: #f0f4f8;
  padding: 10px;
  border-radius: 10px;
  align-self: flex-start;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.chat-input-area {
  padding: 10px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}
#ai-chat-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 14px;
}
#ai-chatbot-send-btn {
  background: #1b2c44;
  color: #fff;
  border: 0;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
}

.ai-reco-summary {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 22px;
  padding: 16px;
  margin-bottom: 12px;
  color: #222;
  font-size: 14px;
  line-height: 1.7;
  word-break: keep-all;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ai-reco-slider {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.ai-reco-slider::-webkit-scrollbar {
  display: none;
}

.ai-reco-card {
  flex: 0 0 250px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 22px;
  padding: 14px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.ai-reco-card__desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  min-height: 36px;
  margin-bottom: 10px;
  overflow: hidden;
}

.ai-reco-card__image-wrap {
  background: #fafafa;
  border-radius: 14px;
  text-align: center;
  padding: 12px;
  margin-bottom: 12px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-reco-card__image {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}
.ai-reco-card__noimage {
  font-size: 13px;
  color: #888;
}

.ai-reco-card__name {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  line-height: 1.4;
  margin-bottom: 6px;
  word-break: keep-all;
}
.ai-reco-card__price {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}
.ai-reco-card__status {
  font-size: 12px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 12px;
}
.ai-reco-card__status.is-soldout {
  color: #d32f2f;
}

.ai-reco-card__btn {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
  background: #1b2c44;
  color: #fff !important;
  text-decoration: none;
  padding: 13px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  box-sizing: border-box;
}
.ai-reco-card__btn.is-soldout {
  background: #6f7a86;
}

/* BASIC css end */

