﻿/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

    .search-overlay.active {
        display: flex;
    }

.search-box {
    width: 60%;
    max-width: 700px;
    position: relative;
}

    .search-box input {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 2px solid #fff;
        font-size: 28px;
        padding: 15px 50px 15px 10px;
        color: #fff;
        outline: none;
    }

        .search-box input::placeholder {
            color: #ccc;
        }

.search-btn {
    position: absolute;
    right: 0;
    top: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

    .search-btn img {
        width: 28px;
    }

/* Close Button */
.search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #ffd400;
    cursor: pointer;
}
