.purchase-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 9999;
  transform: translateY(20px);
}

.purchase-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popup-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f02e2e;
}

.popup-content strong {
  font-size: 15px;
  color: #222;
}
.popup-content p {
  margin: 0;
  font-size: 13px;
  color: #555;
}
.popup-content small {
  color: #888;
  font-size: 12px;
}
