/* Gold Code / WiserNotify recent-sales toast. Standalone — landers mix v1
   inline CSS and v2 Tailwind, so this file must not depend on either. */

.ns-sp-root {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 10000;
  width: min(340px, calc(100vw - 28px));
  pointer-events: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ns-sp-root.ns-sp-has-deadline {
  bottom: 92px;
}

.ns-sp-card {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transform: translateY(calc(100% + 24px));
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ns-sp-card.is-in {
  transform: translateY(0);
}

.ns-sp-card.is-out {
  transform: translateY(calc(100% + 24px));
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ns-sp-thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  background: #e8eef2;
}

.ns-sp-thumb svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ns-sp-body {
  min-width: 0;
  flex: 1;
}

.ns-sp-who {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.3;
  color: #222;
  font-weight: 400;
}

.ns-sp-action {
  margin: 1px 0 0;
  font-size: 13.5px;
  line-height: 1.3;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ns-sp-action strong {
  font-weight: 700;
}

.ns-sp-meta {
  margin: 10px 0 0;
  font-size: 11.5px;
  line-height: 1.2;
  color: #9aa0a6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ns-sp-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #9aa0a6;
  font-weight: 400;
  white-space: nowrap;
}

.ns-sp-verified-badge {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #1da1f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 13px;
}

.ns-sp-verified-badge svg {
  width: 8px;
  height: 8px;
  display: block;
}

@media (max-width: 640px) {
  .ns-sp-root {
    left: 10px;
    right: auto;
    bottom: 12px;
    width: min(320px, calc(100vw - 20px));
  }

  .ns-sp-root.ns-sp-has-deadline {
    bottom: 118px;
  }
}
