/* ── Pomodoro ── */
.pomodoro-layout { display: grid; grid-template-columns: 1fr 300px; gap: 22px; align-items: start; }
.pomo-mode-tabs { display: flex; background: var(--bg-2); border: 1px solid var(--border); border-radius: 50px; padding: 4px; margin-bottom: 28px; width: fit-content; align-self: center; }
.pomo-tab { background: none; border: none; border-radius: 50px; color: var(--text-muted); cursor: pointer; font-size: 13px; font-weight: 600; padding: 8px 18px; transition: all .2s; }
.pomo-tab.active { background: var(--accent); color: #fff; box-shadow: 0 2px 10px var(--accent-glow); }
.pomodoro-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; padding: 36px 28px; }
.pomo-ring-wrap { position: relative; width: 210px; height: 210px; margin-bottom: 24px; }
.pomo-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: var(--bg-2); stroke-width: 10; }
.ring-progress { fill: none; stroke: url(#pomo-gradient); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 553; stroke-dashoffset: 0; transition: stroke-dashoffset .5s linear; }
.pomo-time-display { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.pomo-time { font-family: var(--font-mono); font-size: 42px; font-weight: 700; letter-spacing: -2px; line-height: 1; color: var(--text); }
.pomo-mode-label { color: var(--text-muted); font-size: 13px; margin-top: 5px; font-weight: 500; }
.pomo-controls { display: flex; gap: 10px; margin-bottom: 22px; }
.btn-pomo-main { min-width: 100px; }
.pomo-subject-row { align-items: center; display: flex; gap: 10px; width: 100%; margin-bottom: 16px; }
.pomo-label { font-size: 13px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.pomo-count-row { align-items: center; display: flex; gap: 8px; }
.pomo-zap-icon { width: 16px; height: 16px; color: var(--warn); }
.pomo-count-label { font-size: 13px; color: var(--text-muted); }
.pomo-settings-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 22px; }
.settings-title { align-items: center; display: flex; font-size: 15px; font-weight: 700; gap: 7px; margin-bottom: 18px; }
.settings-title svg { width: 15px; height: 15px; color: var(--accent); }
.settings-row { align-items: center; display: flex; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.settings-row label { font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.settings-input { width: 80px; text-align: center; font-family: var(--font-mono); }
@media (max-width: 900px) { .pomodoro-layout { grid-template-columns: 1fr; } }
