/* בסיס */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1rem;
  border-radius: 9999px;          /* כפתור עגול (pill) */
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .05s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  user-select: none;
}

/* צבעים — פריימרי/אאוטליין/כהה/בהיר */
.call-btn.is-primary {
  background: #1a73e8;
  color: #fff;
}
.call-btn.is-primary:hover { background: #155fc0; }

.call-btn.is-outline {
  background: #fff;
  color: #1a73e8;
  border-color: #1a73e8;
}
.call-btn.is-outline:hover { background: #eef5ff; }

.call-btn.is-dark {
  background: #222;
  color: #fff;
}
.call-btn.is-dark:hover { background: #111; }

.call-btn.is-light {
  background: #f5f7fb;
  color: #111;
  border-color: #e2e6ee;
}
.call-btn.is-light:hover { background: #e9eef7; }

/* גדלים */
.call-btn.is-sm   { padding: .5rem .8rem; font-size: .95rem; }
.call-btn.is-md   { padding: .7rem 1rem;  font-size: 1rem;   }
.call-btn.is-lg   { padding: .9rem 1.2rem; font-size: 1.1rem; }

/* אפקט לחיצה עדין */
.call-btn:active { transform: translateY(1px); }

/* אייקון טלפון אופציונלי (אם תרצו להוסיף span.icon) */
.call-btn .icon { display:inline-block; width:1em; height:1em; }
