Approach: Hold \(y\) fixed and count the integer \(x\) values in its allowed window. The window for \(x\) is \([y,\ 14-y]\), and counting per row is far cleaner than sketching the region.
Step 1: Constraints: \(x \ge y\), \(y \ge 3\), and \(x + y \le 14\Rightarrow x \le 14 - y\). So for a fixed \(y\), \(x\) ranges over the integers in \([y,\ 14-y]\).
Step 2 (range of \(y\)): For at least one \(x\) to exist we need \(y \le 14 - y\), i.e. \(y \le 7\). With \(y \ge 3\), valid \(y \in \{3,4,5,6,7\}\).
Step 3 (count per \(y\)): Number of integers in \([y,\ 14-y]\) is \((14-y) - y + 1 = 15 - 2y\).
\(y=3:\ 9\) values, \(y=4:\ 7\), \(y=5:\ 5\), \(y=6:\ 3\), \(y=7:\ 1\).
Step 4: Total \(= 9 + 7 + 5 + 3 + 1 = 25\) (sum of first \(5\) odd numbers \(= 5^2 = 25\)).
Answer: \(\boxed{25}\) integer pairs.