/* ==============================================================================
   Help Modal Styles
   ============================================================================== */

/* ── Modal ── */
.help-modal .modal-content {
    border-radius: 14px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.help-modal .modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 16px 24px;
}
.help-modal .modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
}
.help-modal .modal-title i { color: #3b82f6; font-size: 18px; }
.help-modal-body {
    padding: 16px 24px !important;
    max-height: 75vh;
    overflow-y: auto;
}
.help-modal .modal-footer {
    border-top: 1px solid #f1f5f9;
    padding: 12px 24px;
}

/* ── Accordion ── */
.help-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
    margin-bottom: 8px;
    overflow: hidden;
}
.help-accordion .accordion-button {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    padding: 12px 16px;
}
.help-accordion .accordion-button:not(.collapsed) {
    background: #eff6ff;
    color: #2563eb;
    box-shadow: none;
}
.help-accordion .accordion-button:focus { box-shadow: none; }
.help-accordion .accordion-body {
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.8;
    color: #334155;
}

/* ── Steps ── */
.help-steps { display: flex; flex-direction: column; gap: 14px; }
.help-step { display: flex; gap: 12px; align-items: flex-start; }
.help-step-num {
    width: 26px; height: 26px; border-radius: 50%;
    background: #3b82f6; color: #fff; font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.help-step-body { flex: 1; min-width: 0; }
.help-step-title { font-size: 13px; font-weight: 600; color: #1e293b; margin-bottom: 2px; }
.help-step-desc { font-size: 12px; color: #64748b; line-height: 1.6; }

/* ── Feature Item ── */
.help-feature {
    padding: 10px 14px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    margin-bottom: 10px;
}
.help-feature-name {
    font-size: 13px; font-weight: 600; color: #1e293b; margin-bottom: 4px;
    display: flex; align-items: center; gap: 6px;
}
.help-feature-name .badge {
    font-size: 10px; font-weight: 500; padding: 2px 6px;
}
.help-feature-desc {
    font-size: 12px; color: #64748b; line-height: 1.6;
}
.help-feature-desc ul {
    margin: 4px 0 0 0; padding-left: 18px;
}
.help-feature-desc li { margin-bottom: 2px; }

/* ── Screenshot placeholder ── */
.help-screenshot {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    margin: 12px 0;
    background: #fafbfc;
}
.help-screenshot i { font-size: 24px; display: block; margin-bottom: 6px; }

/* ── Keyboard shortcut badge ── */
.kbd {
    display: inline-block;
    padding: 2px 6px;
    font-size: 11px;
    font-family: monospace;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    color: #334155;
}

/* ── Tip block ── */
.help-tip {
    padding: 10px 14px;
    border-radius: 8px;
    background: #eff6ff;
    border-left: 3px solid #3b82f6;
    font-size: 12px;
    color: #1e40af;
    margin: 10px 0;
}
.help-tip strong { color: #1e3a8a; }

/* ── Warning block ── */
.help-warn {
    padding: 10px 14px;
    border-radius: 8px;
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
    font-size: 12px;
    color: #92400e;
    margin: 10px 0;
}

/* ── Toolbar icon demo ── */
.toolbar-demo {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 6px;
    background: rgba(255,255,255,0.85); border: 1px solid #e2e8f0;
    font-size: 12px; color: #64748b; margin: 2px;
}
.toolbar-demo i { font-size: 14px; }

/* ── Color swatch ── */
.color-swatch {
    display: inline-block; width: 12px; height: 12px; border-radius: 50%;
    vertical-align: middle; margin-right: 4px; border: 1px solid rgba(0,0,0,0.1);
}

/* ── Section divider ── */
.help-section-divider {
    font-size: 11px; font-weight: 700; color: #94a3b8;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 8px 0 6px; margin-top: 8px;
    border-bottom: 1px solid #f1f5f9;
}

/* ── FAQ ── */
.help-faq { display: flex; flex-direction: column; gap: 12px; }
.help-faq-item {
    padding: 12px; border-radius: 8px;
    background: #f8fafc; border: 1px solid #f1f5f9;
}
.help-faq-q { font-size: 13px; font-weight: 600; color: #1e293b; margin-bottom: 6px; }
.help-faq-a { font-size: 12px; color: #64748b; line-height: 1.6; }
