/* 
   SOCIAL PROOF POPUP
   ---------------------------------------------------------- */

.social-proof {
  position: fixed;
  bottom: 120px; /* Sobre la barra de compra fab */
  left: 15px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 9000; /* Debajo del menu pero arriba de casi todo */
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(0,0,0,0.05);
}

.social-proof--active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* Modo oscuro soporte */
@media (max-width: 1024px) {
  .social-proof {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #333;
    color: #fff;
    bottom: 160px; /* Más arriba por los botones grandes */
    max-width: 240px;
    padding: 10px;
  }
}

.social-proof__image {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f0f0;
  flex-shrink: 0;
}

.social-proof__content {
  flex: 1;
}

.social-proof__text {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.social-proof__name {
  font-weight: 700;
  color: var(--color-primary, #3b82f6);
}

.social-proof__time {
  font-size: 11px;
  color: #888;
  display: block;
  margin-top: 2px;
}

.social-proof__verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #22c55e; /* Green */
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}
