/* Membership Badge Styles - Badge circular para descuentos de membresía */

.membership-badge {
  position: absolute;
  top: 10px;
  left: 10px;

  width: 52px;
  height: 52px;
  border-radius: 50%;

  background: #3C3489;
  color: #CECBF6;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  
  z-index: 10;
  box-shadow: 0 2px 8px rgba(60, 52, 137, 0.3);
}

.membership-badge .badge-icon {
  font-size: 14px;
  line-height: 1;
}

.membership-badge .badge-text {
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}
