.search-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.search-overlay.active {
    display: flex;
}
.search-form {
    display: flex;
    gap: 0px;
    background: #fff;
    padding: 0px;
    border-radius: 0px;
}
.search-form input {
    padding: 10px;
    font-size: 16px;
    width: 500px;
}
.search-form button {
    background: #c30000;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0px;
}
.close-search {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    text-decoration: none;
}
.search-overlay {
    display: none !important;
}

.search-overlay.active {
    display: flex !important;
}

body.search .search-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
