.gh-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4000000;
    padding-top: 100px;
}

.gh-search-overlay.is-open {
    display: block;
}

.gh-search-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.gh-search-container {
    position: relative;
    width: 100%;
}

.gh-search-form {
    width: 100%;
}

.gh-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.gh-search-input {
    flex: 1;
    padding: 25px 20px;
    font-size: 18px;
    border: none;
    background: #fff;
    color: #333;
    outline: none;
    font-family: Mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.gh-search-input::placeholder {
    color: #999;
}

.gh-search-submit {
    background: none;
    border: none;
    padding: 25px 20px;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-search-submit:hover {
    color: #333;
}

.gh-search-submit svg {
    width: 20px;
    height: 20px;
}

.gh-search-results {
    margin-top: 10px;
    background: #fff;
    border-radius: 4px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.gh-search-results.has-results {
    display: block;
}

.gh-search-results-list {
    padding: 0;
}

.gh-search-see-all-wrapper {
    margin-top: 10px;
    display: none;
}

.gh-search-see-all-wrapper.has-results {
    display: block;
}

.gh-search-result-item {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    font-family: Mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.gh-search-result-item:hover {
    background-color: #f5f5f5;
}

.gh-search-result-item:last-child {
    border-bottom: none;
}

.gh-search-result-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-family: Mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.gh-search-result-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    font-family: Mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.gh-search-see-all {
    padding: 15px 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
    font-family: Mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.gh-search-see-all a {
    color: #2f6f8f;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    font-family: Mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.gh-search-see-all a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .gh-search-overlay {
        padding-top: 60px;
    }
    
    .gh-search-wrapper {
        padding: 0 20px;
    }
    
    .gh-search-input {
        font-size: 16px;
        padding: 22px 15px;
    }
    
    .gh-search-submit {
        padding: 22px 15px;
    }
    
    .gh-search-results {
        max-height: 300px;
    }
}
