/* ── POST FORM ── */
.post-header { padding: 16px 20px 12px; border-bottom: 1px solid var(--border); background: var(--surface); flex-shrink: 0; }
.screen-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -0.1px; }
.screen-sub { font-size: 13px; color: var(--ink-muted); margin-top: 3px; }
.form-body { padding: 14px 20px; display: flex; flex-direction: column; gap: 12px; }
.form-section { background: var(--surface); border-radius: var(--r); border: 1px solid var(--border); padding: 15px; }
.form-section-title { font-size: 11px; font-weight: 600; color: var(--ink-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 7px; letter-spacing: 0.5px; text-transform: uppercase; }
.section-icon { width: 20px; height: 20px; border-radius: 4px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 11px; }
.field { margin-bottom: 11px; }
.field:last-child { margin-bottom: 0; }
.field-label { display: block; font-size: 10px; font-weight: 600; color: var(--ink-muted); letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 5px; }
.field-input { width: 100%; height: 38px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0 11px; font-family: var(--font-body); font-size: 13px; color: var(--ink); outline: none; transition: border-color 0.18s; }
.field-input:focus { border-color: var(--accent-mid); box-shadow: 0 0 0 3px rgba(26,58,92,0.08); background: var(--surface); }
.field-textarea { height: auto; min-height: 70px; padding: 9px 11px; resize: none; line-height: 1.5; }
.field-row { display: flex; gap: 9px; }
.field-row .field { flex: 1; }
.seats-picker { display: flex; align-items: center; gap: 14px; }
.seats-counter-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); font-size: 16px; color: var(--ink-mid); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.12s; }
.seats-counter-btn:hover { background: var(--surface2); }
.seats-counter-btn:active { transform: scale(0.9); }
.seats-count { font-size: 24px; font-weight: 700; color: var(--accent); min-width: 28px; text-align: center; }
.recurrence-grid { display: flex; gap: 6px; }
.day-chip { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; border: 1px solid var(--border); background: var(--bg); color: var(--ink-muted); cursor: pointer; transition: all 0.12s; }
.day-chip.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.tags-input { display: flex; flex-wrap: wrap; gap: 5px; }
.pref-chip { padding: 5px 10px; border-radius: 4px; border: 1px solid var(--border); background: var(--bg); color: var(--ink-muted); font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.12s; display: inline-flex; align-items: center; gap: 5px; }
.pref-chip.on { background: var(--accent-light); border-color: var(--accent-mid); color: var(--accent); }
.disclaimer-box { background: var(--amber-light); border: 1px solid rgba(138,90,8,0.12); border-radius: var(--r-sm); padding: 12px; font-size: 12px; color: var(--amber); line-height: 1.6; }
.post-btn { width: 100%; height: 42px; background: var(--accent); color: #fff; border: none; border-radius: var(--r-sm); font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; letter-spacing: 0.1px; transition: background 0.15s; }
.post-btn:hover { background: var(--accent-dark); }
.post-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.post-btn:not(:disabled):active { transform: scale(0.98); }


/* ── POST TYPE TOGGLE ── */
.post-type-toggle { display: flex; gap: 2px; background: var(--bg); border-radius: var(--r-sm); padding: 3px; margin-bottom: 4px; border: 1px solid var(--border); }
.post-type-btn { flex: 1; height: 38px; border: none; border-radius: 5px; font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.15s; background: none; color: var(--ink-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }
.post-type-btn.active { background: var(--surface); color: var(--ink); font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

/* Request type button gets amber accent */
.post-type-btn.request-active { background: var(--surface); color: #B45309; font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.08); border: 1.5px solid #FDE68A; }
