.fake-order {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s ease;
  z-index: 999999;
  min-width: 280px;
}

.fake-order.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.fake-order img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
  border: 2px solid #fff;
}

.fake-text strong {
  color: #000;
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.fake-text p {
  color: #333;
  font-size: 13px;
  margin: 0;
  line-height: 1.2;
}

.fake-text small {
  color: #777;
  font-size: 12px;
}
