#complain-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
  z-index: 1000;
}

#complain-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(2px);
  display: none;
  z-index: 999;
}

#complain-modal {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 320px;
  background: var(--primary-bg-color);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border-default);
  box-shadow: 0 24px 40px rgba(0,0,0,.25);
  display: none;
  z-index: 1001;
}

#complain-modal h3 {
  margin: 0 0 6px;
  color: var(--secondary-color);
}

#complain-modal p {
  font-size: .9rem;
  margin-bottom: 14px;
}

#complain-modal label {
  font-size: .85rem;
  font-weight: 600;
}

#complain-modal input,
#complain-modal textarea {
  width: 100%;
  margin: 6px 0 12px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-default);
  font-size: .9rem;
}

#complain-modal .actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

#complain-modal .btn-primary {
  background: var(--primary-color);
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  line-height: normal;
}

#complain-modal .btn-secondary {
  background: transparent;
  border: 1px solid var(--border-default);
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
}

/* Hide honeypot */
#complain-modal input[name="company"] {
  display: none !important;
}

/* Toast */
#toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: .9rem;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 1100;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

#toast.success {
  background: var(--success-color);
}

#toast.error {
  background: var(--danger-color);
}
