.assistant-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #4f46e5, #818cf8);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.assistant-fab:hover {
  transform: scale(1.1);
}

/* استایل پنجره اصلی چت */
.assistant-window {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 380px;
  max-width: calc(100% - 40px);
  height: 550px;
  max-height: calc(100vh - 120px);
  background-color: #1f2937; /* Dark background */
  color: #f9fafb; /* Light text */
  border-radius: 16px;
  border: 1px solid #4b5563;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: bottom right;
}

.assistant-window.hidden {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  pointer-events: none;
}

/* هدر پنجره */
.assistant-header {
  background: linear-gradient(90deg, #374151, #4b5563);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #4b5563;
}

.assistant-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover {
  color: #f9fafb;
}

/* بدنه چت و پیام‌ها */
.assistant-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  max-width: 85%;
  padding: 12px 18px;
  border-radius: 20px;
  line-height: 1.5;
  font-size: 14px;
}
.message p {
  margin: 0;
}

.bot-message {
  background-color: #374151;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.user-message {
  background: linear-gradient(45deg, #4f46e5, #6366f1);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

/* فوتر و فرم ورودی */
.assistant-footer {
  padding: 12px 20px;
  border-top: 1px solid #4b5563;
  background-color: #374151;
}

.assistant-form {
  display: flex;
  gap: 10px;
}

.assistant-form input {
  flex-grow: 1;
  border: 1px solid #4b5563;
  background-color: #1f2937;
  color: #f9fafb;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
}
.assistant-form input::placeholder {
  color: #9ca3af;
}

.assistant-form button {
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.assistant-form button:hover {
  background-color: #6366f1;
}

/* انیمیشن در حال تایپ... */
.typing-indicator span {
  height: 8px;
  width: 8px;
  background-color: #9ca3af;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-of-type(1) {
  animation-delay: -0.32s;
}
.typing-indicator span:nth-of-type(2) {
  animation-delay: -0.16s;
}
@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.typing-indicator.hidden {
  display: none;
}

/* --- استایل ریسپانسیو برای دستیار --- */
@media (max-width: 640px) {
  .assistant-fab {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }

  /* استایل برای نمایش پنجره به صورت bottom-sheet در موبایل */
  .assistant-window {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 80vh; /* اشغال کردن بخش بیشتری از صفحه */
    max-height: 100%;
    border-radius: 20px 20px 0 0; /* گرد کردن فقط گوشه‌های بالایی */
    transform-origin: bottom center; /* تغییر مبدا انیمیشن */
  }

  .assistant-window.hidden {
    /* انیمیشن جدید برای باز شدن از پایین */
    transform: translateY(100%);
    opacity: 1; /* برای این انیمیشن نیازی به تغییر شفافیت نیست */
  }
}
