/* BuySellCy Feedback Widget (desktop-only) */

#bscy-feedback-root {
  position: fixed;
  right: 24px;
  bottom: 130px; /* keep above back-to-top / mobile nav */
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bscy-feedback-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #1d283a 0%, #2d3a52 100%);
  box-shadow:
    0 10px 28px rgba(29, 40, 58, 0.25),
    0 6px 16px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.bscy-feedback-button i {
  font-size: 18px;
  line-height: 1;
}

.bscy-feedback-button span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.bscy-feedback-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(29, 40, 58, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.16);
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.bscy-feedback-button:active {
  transform: translateY(0);
}

/* Hide on mobile for now */
@media (max-width: 768px) {
  #bscy-feedback-root {
    display: none !important;
  }
}

/* Honeypot field (invisible to humans) */
.bscy-feedback-hp {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
  .bscy-feedback-button {
    transition: none;
  }
}


