@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Spartan:wght@100..900&family=Outfit:wght@100..900&display=swap");
.ai-chatbot-widget {
  font-family: "Lato", serif !important;
  font-weight: 400 !important;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.ai-chatbot-widget .ai-chatbot-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.ai-chatbot-widget .ai-chatbot-icon.error {
  -webkit-box-shadow: 0px 10px 30px 1px rgb(220, 54, 68);
  -moz-box-shadow: 0px 10px 30px 1px rgb(220, 54, 68);
  box-shadow: 0px 10px 30px 1px rgb(220, 54, 68);
}
.ai-chatbot-widget .ai-chatbot-icon:hover {
  transform: scale(1.1);
}
.ai-chatbot-widget .ai-chatbot-icon img {
  width: 75%;
  height: 75%;
  object-fit: cover;
}
.ai-chatbot-widget .ai-chatbot-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: clamp(300px, 50vw + 2rem, 800px);
  height: 70vh;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-header {
  padding: 15px;
  color: #fff;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-header .ai-chatbot-close {
  background-color: unset;
  border: none;
  color: #fff;
  font-size: 24px !important;
  cursor: pointer;
  padding: 0 5px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-username-container {
  display: flex;
  place-items: center;
  column-gap: 10px;
  margin-bottom: 10px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-username-container .ai-chatbot-avatar {
  max-width: 26px;
  max-height: 26px;
  object-fit: cover;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-username-container .ai-chatbot-username {
  font-size: 16px;
  font-weight: 700;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-help-section {
  margin-top: 20px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-help-section .ai-chatbot-help-toggle a {
  color: #000;
  font-weight: 600;
  display: flex;
  column-gap: 5px;
  place-items: center;
  text-decoration: underline;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-help-section .ai-chatbot-help-toggle-icon {
  transition: transform 0.3s ease;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-help-section .ai-chatbot-help-content {
  padding-top: 10px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message {
  font-size: 16px !important;
  color: #000;
  margin-bottom: 10px;
  padding: 10px 16px;
  border-radius: 15px;
  max-width: 80%;
  width: fit-content;
  word-wrap: break-word;
  line-height: 1.5 !important;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.user {
  color: #fff;
  margin-left: auto;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.bot {
  margin-right: auto;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.error {
  background-color: #dc3644;
  color: #fff;
  margin-right: auto;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.search-results {
  overflow: hidden;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.search-results p {
  margin: 0 0 16px 0 !important;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.search-results .product-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.search-results .product-list .product-item a {
  text-decoration: none;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.search-results .product-list .product-item a .product-card {
  user-select: none;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.search-results .product-list .product-item a .product-card:hover .product-title {
  text-decoration: underline !important;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.search-results .product-list .product-item a .product-card .product-image {
  width: 100px;
  height: 60px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.search-results .product-list .product-item a .product-card .product-image .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.search-results .product-list .product-item a .product-card .product-title {
  width: 100%;
  color: #333;
  text-decoration: none;
  font-size: 14px !important;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.noImage {
  width: 100%;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.noImage .product-list .product-item a .product-card .link-icon-container {
  display: flex;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-message.noImage .product-list .product-item a .product-card .link-icon-container img.link-icon {
  width: 25px;
  height: auto;
  object-fit: contain;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-loader {
  display: none;
  padding: 10px;
  margin-bottom: 10px;
}
@keyframes loader {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-loader .ai-chatbot-loader-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-loader .ai-chatbot-loader-dots div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: loader 0.8s infinite;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-loader .ai-chatbot-loader-dots div:nth-child(2) {
  animation-delay: 0.2s;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-messages .ai-chatbot-loader .ai-chatbot-loader-dots div:nth-child(3) {
  animation-delay: 0.4s;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-input-container {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-input-container .ai-chatbot-input-wrapper {
  display: flex;
  place-items: center;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  width: 100%;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-input-container .ai-chatbot-input-wrapper img.gemini {
  margin-right: 10px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-input-container .ai-chatbot-input-wrapper .ai-chatbot-input {
  border: none;
  outline: none;
  box-shadow: none;
  width: 100%;
  background-color: transparent !important;
  height: fit-content !important;
  padding: unset !important;
  margin-right: 10px;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-input-container .ai-chatbot-input-wrapper .ai-chatbot-submit {
  font-family: "Lato", serif !important;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  font-size: 14px;
  text-transform: none !important;
  font-weight: normal !important;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-input-container .ai-chatbot-input-wrapper .ai-chatbot-submit.disabled {
  cursor: not-allowed;
}
.ai-chatbot-widget .ai-chatbot-window .ai-chatbot-input-container .ai-chatbot-input-wrapper .ai-chatbot-submit:disabled {
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .ai-chatbot-widget .ai-chatbot-window {
    width: 90%;
  }
}

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