/* ==========================================
   Live Notification — Social Proof Popup
   ========================================== */

.live-notification {
  position: fixed;
  bottom: 24px;
  right: 100px;
  background: white;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 300px;
  z-index: 90;
  border-right: 4px solid var(--green, #28A745);
  transform: translateY(120%);
  transition: transform 0.5s ease;
}

.live-notification.show {
  transform: translateY(0);
}

.live-notification img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
}

.live-notification p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.live-notification p strong {
  font-weight: 800;
}

.live-notification p.time {
  color: var(--gray, #5A5550);
  font-size: 10px;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .live-notification {
    right: 16px;
    left: 16px;
    bottom: 100px;
    max-width: none;
  }
}
