.inta-asst {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.inta-asst__fab {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}

.inta-asst__fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.inta-asst__fab-icon {
  font-size: 18px;
}

.inta-asst__fab-text {
  font-size: 14px;
}

.inta-asst__panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 40px);
  height: 500px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.inta-asst__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #fff;
}

.inta-asst__title {
  font-weight: 700;
  font-size: 16px;
}

.inta-asst__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.inta-asst__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.inta-asst__messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #f9fafb;
}

.inta-asst__msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.inta-asst__msg--assistant {
  background: #fff;
  color: #1f2937;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.inta-asst__msg--user {
  margin-left: auto;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.inta-asst__typing {
  font-size: 14px;
  color: #9ca3af;
  padding: 12px 16px;
}

.inta-asst__typing::after {
  content: '';
  animation: typing 1.5s infinite;
}

@keyframes typing {
  0%, 100% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

.inta-asst__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.inta-asst__quick button {
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.inta-asst__quick button:hover {
  background: #6366f1;
  color: #fff;
  border-color: #6366f1;
}

.inta-asst__form {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.inta-asst__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.inta-asst__input:focus {
  border-color: #6366f1;
}

.inta-asst__send {
  width: 44px;
  height: 44px;
  border: none;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.inta-asst__send:hover {
  transform: scale(1.05);
}

.inta-asst__hint {
  padding: 8px 16px;
  font-size: 11px;
  color: #9ca3af;
  background: #fff;
  text-align: center;
}

/* Responsive */
@media (max-width: 480px) {
  .inta-asst__panel {
    width: 100%;
    height: 70vh;
    bottom: 70px;
    right: -10px;
    border-radius: 20px 20px 0 0;
  }
  
  .inta-asst__fab-text {
    display: none;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 20px;
  z-index: 99998;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  margin: 0;
  font-size: 14px;
}

.cookie-banner .btn {
  flex-shrink: 0;
}
