/* ICON */
.search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
}

/* OVERLAY */
.search-overlay {
    position: fixed;
    inset: 0;
    background: #F5F5F1;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.3s ease;
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* CONTENT */
.search-overlay__inner {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
    position: relative;
}

/* CLOSE */
.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* INPUT */
.search-input {
    width: 100%;
    padding: 16px 0;
    font-size: 28px;
    border: none;
    border-bottom: 1px solid #1A1A1A;
    background: transparent;
    outline: none;
}

/* mobile */
@media (max-width: 768px) {
    .search-input {
        font-size: 22px;
    }
}