/* زر اتصال ثابت بلون كحلي + أيقونة + نص */
.salla-call-button {
  position: fixed;
  bottom: 90px;              /* ← المسافة من أسفل */
  left : 20px;                /* غيّرها إلى right: 20px; لو تبيه يمين */
  background: #001f54;       /* ← اللون الكحلي */
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  z-index: 99999;
  display: flex;             /* ← لإظهار الأيقونة والنص بجانب بعض */
  align-items: center;
  gap: 8px;                  /* ← مسافة بين الأيقونة والنص */
  transition: transform .15s ease, opacity .15s ease;
}
.salla-call-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
.salla-call-button .icon {
  font-size: 20px;           /* ← حجم الأيقونة */
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .salla-call-button {
    font-size: 13px;
    padding: 10px 14px;
    bottom: 240px;          /* ← مثل ما عدلتها */
    left: 16px;
  }
  .salla-call-button .icon {
    font-size: 16px;
  }
}