.socialproof {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border:1px SOLID #CCC;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 12px 16px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  max-width: 300px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 9999;
}
.socialproof.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.socialproof img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.socialproof .socialproof-content { line-height: 1.3; }
.socialproof .socialproof-content strong { color: #0073e6; }
.socialproof .socialproof-close { margin-left: auto; cursor: pointer; font-size: 16px; color: #aaa; transition: color 0.2s; }
.socialproof .socialproof-close:hover { color: #333; }
.socialproof-reset {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0073e6;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  display: none;
}
.socialproof-reset:hover { background: #005bb5; }
