.mxd-urgency-badge-wrapper {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}

.mxd-badge {
  display: inline-block;
  padding: 4px 8px;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  animation: fadeInBadge 0.5s ease forwards;
}

/* Individual Badge Colors */
.mxd-badge-best {
  background-color: #FF3B30; /* Bright Red - Best Seller */
}

.mxd-badge-limited {
  background-color: #C0392B; /* Darker Red - Limited Edition */
}

.mxd-badge-new {
  background-color: #3498DB; /* Blue - New Arrival */
}

.mxd-badge-low {
  background-color: #FF9500; /* Orange - Almost Gone */
}

/* Bonus: Fade-in animation */
@keyframes fadeInBadge {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}
