.whatsapp-float {
  position: fixed;
  width: 60px; height: 60px;
  bottom: 20px; left: 20px;
  background: #25D366; color:#fff; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:28px; text-decoration:none;
  transition:all 0.3s ease; z-index:9999;
}
.whatsapp-float:hover { background:#20ba5a; transform:scale(1.15); }

#fake-orders { position: fixed; left: 20px; bottom: 100px; z-index:9998; width:220px; overflow:hidden; pointer-events:none; }
#fake-orders ul { list-style:none; padding:0; margin:0; position:relative; height:80px; }
#fake-orders li { display:flex; align-items:center; gap:8px; padding:10px 12px; border-radius:10px; background:#fff; color:#333; font-family:Arial,sans-serif; font-size:14px; position:absolute; left:0; width:100%; opacity:0; transform:translateY(100%); box-shadow:0 2px 8px rgba(0,0,0,0.15); transition:all 0.6s ease; }
#fake-orders li.show { opacity:1; transform:translateY(0); }
#fake-orders li.exit { opacity:0; transform:translateY(-30px); }
#fake-orders li img { width:22px; height:22px; flex-shrink:0; }

@media(max-width:768px){
  #fake-orders { width:160px; bottom:90px; }
  #fake-orders li { font-size:12px; padding:8px 10px; }
  #fake-orders li img { width:18px; height:18px; }
}
