/* =============================================================================
   FILE: public/css/social-proof.css
   Behavioral Social Proof badges — Day 17 (B8)
   ============================================================================= */

.sp-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 12px 10px;
  background: #FAFAF8;
  border-top: 1px solid #EDE7DF;
  border-radius: 0 0 10px 10px;
}

.sp-badge {
  font-size: 0.69rem;
  line-height: 1.4;
  color: #5A5248;
  padding: 3px 0;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-badge--reorder { color: #5A8A6E; }
.sp-badge--pro     { color: #6B5C8A; }
.sp-badge--practitioners { color: #8B6F5E; }

/* Category-level banner — appears above product grid */
.sp-category-banner {
  background: #F2EFF9;
  color: #5A4A7A;
  font-size: 0.8rem;
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 16px;
  border: 1px solid #DDD6EF;
}

.sp-category-banner strong { font-weight: 700; }
