#abtz-feedback {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

#abtz-feedback .abtz-feedback__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a69e0 0%, #4386ec 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 105, 224, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 24px;
}

#abtz-feedback .abtz-feedback__trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 105, 224, 0.45);
}

#abtz-feedback .abtz-feedback__trigger svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

#abtz-feedback .abtz-feedback__panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
}

#abtz-feedback.is-open .abtz-feedback__panel {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

#abtz-feedback .abtz-feedback__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #1a69e0 0%, #4386ec 100%);
  color: #fff;
}

#abtz-feedback .abtz-feedback__header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

#abtz-feedback .abtz-feedback__header button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.15s ease;
}

#abtz-feedback .abtz-feedback__header button:hover {
  background: rgba(255, 255, 255, 0.15);
}

#abtz-feedback .abtz-feedback__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#abtz-feedback .abtz-feedback__body label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 4px;
}

#abtz-feedback .abtz-feedback__body input[type="email"],
#abtz-feedback .abtz-feedback__body textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fafafa;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#abtz-feedback .abtz-feedback__body input[type="email"]:focus,
#abtz-feedback .abtz-feedback__body textarea:focus {
  outline: none;
  border-color: #1a69e0;
  box-shadow: 0 0 0 3px rgba(26, 105, 224, 0.1);
  background: #fff;
}

#abtz-feedback .abtz-feedback__body textarea {
  resize: vertical;
  min-height: 90px;
}

#abtz-feedback .abtz-feedback__body .abtz-feedback__hint {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

#abtz-feedback .abtz-feedback__body .abtz-feedback__error {
  font-size: 12px;
  color: #c53030;
  margin-top: 2px;
  display: none;
}

#abtz-feedback .abtz-feedback__body .abtz-feedback__error.is-visible {
  display: block;
}

#abtz-feedback .abtz-feedback__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px;
  gap: 10px;
}

#abtz-feedback .abtz-feedback__footer button {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
  font-family: inherit;
}

#abtz-feedback .abtz-feedback__footer .abtz-feedback__cancel {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: #555;
}

#abtz-feedback .abtz-feedback__footer .abtz-feedback__cancel:hover {
  background: #e5e5e5;
}

#abtz-feedback .abtz-feedback__footer .abtz-feedback__submit {
  background: linear-gradient(135deg, #1a69e0 0%, #4386ec 100%);
  border: none;
  color: #fff;
}

#abtz-feedback .abtz-feedback__footer .abtz-feedback__submit:hover:not(:disabled) {
  opacity: 0.9;
}

#abtz-feedback .abtz-feedback__footer .abtz-feedback__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#abtz-feedback .abtz-feedback__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  gap: 8px;
}

#abtz-feedback .abtz-feedback__success.is-visible {
  display: flex;
}

#abtz-feedback .abtz-feedback__success svg {
  width: 48px;
  height: 48px;
  color: #1a69e0;
  margin-bottom: 8px;
}

#abtz-feedback .abtz-feedback__success h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

#abtz-feedback .abtz-feedback__success p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Honeypot */
#abtz-feedback .abtz-feedback__website {
  position: absolute;
  left: -9999px;
}
