.sales-notif {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 320px;
  max-width: calc(100vw - 32px);
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(12,26,48,.97), rgba(20,38,68,.97));
  border: 1px solid rgba(240,180,41,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 24px rgba(240,180,41,.08);
  color: #e6eef9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.85,.3,1.1), opacity .35s ease;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sales-notif.show { transform: translateX(0); opacity: 1; }
.sales-notif.hide { transform: translateX(-120%); opacity: 0; }
.sales-notif .sn-row { display: flex; align-items: flex-start; gap: 10px; }
.sales-notif .sn-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b429, #d4941d);
  color: #0c1a30;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(240,180,41,.3);
}
.sales-notif .sn-body { flex: 1; min-width: 0; }
.sales-notif .sn-title {
  font-size: .85rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sales-notif .sn-title b { color: #f0b429; font-weight: 700; }
.sales-notif .sn-meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: #9aa9bf;
}
.sales-notif .sn-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9aa9bf;
}
.sales-notif .sn-verified {
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.sales-notif .sn-verified svg { width: 11px; height: 11px; }
.sales-notif .sn-flag { font-size: 1rem; line-height: 1; }
.sales-notif .sn-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: 0;
  color: #9aa9bf;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: .6;
  transition: opacity .2s;
}
.sales-notif .sn-close:hover { opacity: 1; color: #fff; }
@media (max-width: 480px) {
  .sales-notif { width: calc(100vw - 24px); left: 12px; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .sales-notif { transition: opacity .2s ease; transform: none; }
  .sales-notif.hide { transform: none; }
}
