
.whatsapp-float {
  position: fixed;
  bottom: 90px;     /* فوق زر الشراء */
  left: 8px;        /* أقصى الشمال */
  z-index: 99999;

  display: flex;
  align-items: center;
  gap: 8px;

  direction: ltr;   /* مهم جدًا: نكسر RTL هنا */
}

/* زر واتساب (الدائرة) */
.whatsapp-btn {
  width: 48px;
  height: 48px;
  background: #25D366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  flex-shrink: 0;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}

/* الرسالة (تطلع من يمين الزر) */
.whatsapp-msg {
  background: #fff;
  color: #1e1e1e;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;

  box-shadow: 0 6px 16px rgba(0,0,0,0.12);

  opacity: 0;
  transform: translateX(-6px);
  pointer-events: none;
  transition: 0.35s ease;
}

/* إظهار الرسالة */
.whatsapp-float.show .whatsapp-msg {
  opacity: 1;
  transform: translateX(0);
}

/* موبايل */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 90px;
    left: 6px;
  }
}
