/* Иконка поиска */
.conditor-quick-search-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 8px;
    color: #333;
}
.conditor-quick-search-trigger:hover {
    color: #0073aa;
}

/* Модальное окно */
#conditor-quick-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
}
#conditor-quick-search-modal.active {
    display: flex;
}

.conditor-quick-search-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 20px;
    position: relative;
}

.conditor-quick-search-input {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 0;
}

.conditor-quick-search-results {
    max-height: 400px;
    overflow-y: auto;
}

.conditor-quick-search-results h4 {
    margin: 15px 0 8px;
    color: #333;
}

.conditor-quick-search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conditor-quick-search-results li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.conditor-quick-search-results a {
    text-decoration: none;
    color: #0073aa;
    display: block;
}

.conditor-quick-search-results a:hover {
    text-decoration: underline;
}

.conditor-quick-search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}