.wcsp-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.wcsp-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.wcsp-popup span {
  opacity: 0.7;
  font-size: 12px;
}

.wcsp-popup a {
  color: #fff;
  text-decoration: underline;
}

.wcsp-popup a:hover {
  color: #ddd;
}