.search-icon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.search-icon-overlay__inner {
    width: 90%;
    max-width: 640px;
    position: relative;
}

.search-icon-overlay form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.search-icon-overlay input[type="text"] {
    flex: 1;
    padding: 18px 22px;
    font-size: 20px;
    border: none;
    outline: none;
    background: transparent;
    color: #1a1a1a !important;
    box-sizing: border-box;
}

.search-icon-overlay input[type="text"]::placeholder {
    color: #999 !important;
}

.search-icon-overlay__submit {
    background: none;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
}

.search-icon-overlay__submit svg {
    width: 22px;
    height: 22px;
}

.search-icon-overlay__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    opacity: 0.8;
    padding: 0;
}

.search-icon-overlay__close:hover {
    opacity: 1;
}

.search-icon-overlay__close svg {
    width: 18px;
    height: 18px;
}
