/* زر واتساب ثابت بأسلوب احترافي */
#whatsapp-float::before {
  content: "";
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: url('https://img.icons8.com/color/48/000000/whatsapp--v1.png') no-repeat center center / cover;
  z-index: 9999;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
}

/* افتح الرابط عند الضغط */
#whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  z-index: 9999;
}

/* حيلة لفتح الرابط باستخدام "label hack" */
#whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10000;
}