/* 
 * כפתור בסיסי - נגיש, responsive ועם feedback ברור
 * גובה מינימלי של 44px (touch target) מושג דרך padding + line-height
 */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px; /* 44px min height for touch targets */
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: transform .06s ease, background .2s ease;
  text-decoration: none;
  font-weight: 600;
}
.button:hover { background: var(--primary-600); }
.button:active { transform: translateY(1px); }
.button--ghost { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.button--accent { background: var(--accent); color: #111; }
