/* Social Proof Notification Toast Styles */
.social-proof-toast-container {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 99999;
  pointer-events: none;
}

.social-proof-toast {
  position: relative;
  width: 370px;
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.social-proof-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.social-proof-toast.hide {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
}

/* Accent Indicator Bar */
.social-proof-toast::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(185deg, #3b82f6, #6366f1);
}

.social-proof-toast.toast-review::before {
  background: linear-gradient(185deg, #f59e0b, #eab308);
}

/* Icon Container */
.social-proof-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.social-proof-toast.toast-review .social-proof-icon-box {
  background: #fffbeb;
  color: #d97706;
}

/* Body Content */
.social-proof-content {
  flex: 1;
  padding-right: 14px;
}

.social-proof-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #3b82f6;
  margin-bottom: 4px;
}

.social-proof-toast.toast-review .social-proof-header {
  color: #d97706;
}

.social-proof-message {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #1e293b;
  font-weight: 500;
  margin: 0;
  word-break: break-word;
}

/* Close Button */
.social-proof-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.social-proof-close-btn:hover {
  color: #0f172a;
  background: #f1f5f9;
}

@media (max-width: 576px) {
  .social-proof-toast-container {
    bottom: 15px;
    left: 15px;
  }
}
