/* Neuro Serge Social Proof — social-proof.css */

#sp-wrap {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99999;
  width: 290px;
  pointer-events: none;
}

.sp-toast {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #ffffff;
  border-left: 3px solid #0a9396;
  padding: 12px 13px;
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.11);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sp-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.sp-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.sp-body {
  flex: 1;
  min-width: 0;
}

.sp-stars {
  color: #f59e0b;
  font-size: 0.72rem;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: 0.03em;
}

.sp-name {
  font-size: 0.83rem;
  font-weight: 700;
  color: #1a2433;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-action {
  font-size: 0.76rem;
  color: #374151;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-location {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-top: 2px;
}

.sp-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.2s;
  align-self: flex-start;
}

.sp-close:hover {
  color: #6b7280;
}

@media (max-width: 480px) {
  #sp-wrap {
    width: calc(100vw - 32px);
    left: 16px;
    bottom: 16px;
  }
}
