.search-icon-trigger-2f1e1d5a {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.search-icon-trigger-2f1e1d5a:hover {
    opacity: 0.8;
}

.search-modal-2f1e1d5a {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-overlay-2f1e1d5a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.search-modal-content-2f1e1d5a {
    position: relative;
    z-index: 10000;
    width: 90%;
    max-width: 800px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.search-modal-close-2f1e1d5a {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.search-modal-close-2f1e1d5a:hover {
    opacity: 0.7;
}

.search-form-2f1e1d5a {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.search-input-2f1e1d5a {
    flex-grow: 1;
    padding: 10px 15px;
    font-size: 32px;
    color: #fff;
    background: transparent;
    border: none;
    outline: none;
}

.search-input-2f1e1d5a::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit-2f1e1d5a {
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.search-submit-2f1e1d5a:hover {
    opacity: 0.7;
}