.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.search--active {
    display:block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    z-index: 1001;

}
.search-form-wrap {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1002;
    display: none;
}

.search-results__item {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.search-results__item:last-child {
    border-bottom: none;
}

.search-results__link {
    display: block;
    color: #333;
    text-decoration: none;
}

.search-results__title {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 3px;
}

.search-opened {
    /*overflow: hidden;*/
}

/* Стили для адаптивности */
@media (max-width: 768px) {
    .search-form-wrap {
        box-shadow: none;
        padding:0;
    }
    .search--active {
        width: 90%;
        max-width: none;
    }
}