#recentPurchasePopup{
  position:fixed;
  bottom:20px;
  left:20px;
  background:linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius:14px;
  padding:14px 16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
  font-family:'Poppins', sans-serif;
  font-size:13px;
  color:#ffffff;
  max-width:260px;
  opacity:0;
  transform:translateY(20px);
  transition:all .4s ease;
  z-index:9999;
}

#recentPurchasePopup.show{
  opacity:1;
  transform:translateY(0);
}

#recentPurchasePopup strong{
  font-weight:700;
}

.rp-time{
  font-size:12px;
  color:#ffffff;
  margin-top:4px;
}

/* Mobile adjustment */
@media(max-width:520px){
  #recentPurchasePopup{
    left:10px;
    right:10px;
    max-width:none;
  }
}
