/* PM_SUGGEST_V1 — свои подсказки поиска (форма в стилях прежнего поля + выпадашка) */
.pm-suggest { position: relative; }
.pm-suggest .search-title { display: block; background: #f0f0f0; border-radius: 5px; }
.pm-suggest .search-title-form { display: block; padding: 0; margin: 0; }
.pm-suggest .search-title-input {
    display: block; background: transparent; border: none; outline: none;
    width: 100%; color: #1d1d1d; font-size: 12px; line-height: 1.5; padding: 9px 10px;
}
.pm-suggest .search-title-button {
    display: block; background: transparent; border: none; outline: none;
    line-height: 1; color: #0065ff; cursor: pointer; padding: 9px 10px;
}
.pm-suggest-drop {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0; min-width: 280px;
    background: #fff; border: 1px solid #e3e7ec; border-radius: 8px;
    box-shadow: 0 10px 30px rgba(20, 30, 50, .14); z-index: 3000;
    max-height: 70vh; overflow: auto; padding: 8px; box-sizing: border-box;
}
.pm-suggest-note {
    padding: 8px 10px; font-size: 12px; color: #8a6d3b; background: #fff7e6;
    border-radius: 6px; margin-bottom: 6px;
}
.pm-suggest-item {
    display: flex; gap: 10px; align-items: center; padding: 7px 8px;
    border-radius: 6px; text-decoration: none; color: #1d1d1d;
}
.pm-suggest-item:hover, .pm-suggest-item.active { background: #f2f6fc; }
.pm-suggest-item img { width: 44px; height: 44px; object-fit: contain; flex: none; background: #fff; }
.pm-suggest-item-exact { background: #f0f9f0; border: 1px solid #cdeacd; }
.pm-suggest-item-exact:hover { background: #e6f5e6; }
.pm-suggest-badge {
    display: inline-block; font-size: 10px; font-weight: 600; line-height: 1.4;
    padding: 1px 7px; border-radius: 10px; margin-bottom: 3px;
}
.pm-suggest-badge-exact { background: #2e7d32; color: #fff; }
.pm-suggest-badge-config { background: #eef1f5; color: #667; }
.pm-suggest-name { font-size: 13px; line-height: 1.35; display: block; }
.pm-suggest-article { font-size: 11px; color: #8894a0; display: block; margin-top: 2px; }
.pm-suggest-all {
    display: block; text-align: center; padding: 9px; margin-top: 6px;
    border-top: 1px solid #eef1f5; font-size: 13px; color: #0065ff; text-decoration: none;
}
.pm-suggest-all:hover { text-decoration: underline; }
.pm-suggest-empty { padding: 12px 10px; font-size: 13px; color: #667; }
.pm-suggest-queries { border-bottom: 1px solid #eef1f5; padding-bottom: 4px; margin-bottom: 4px; }
.pm-suggest-query {
    display: flex; align-items: center; gap: 8px; padding: 6px 8px;
    border-radius: 6px; text-decoration: none; color: #1d1d1d; font-size: 13px;
}
.pm-suggest-query:hover, .pm-suggest-query.active { background: #f2f6fc; }
.pm-suggest-query b { font-weight: 600; }
.pm-suggest-loupe { color: #8894a0; font-size: 14px; flex: none; }
@media (max-width: 640px) {
    .pm-suggest-drop { max-height: 60vh; }
}
