/* --- SEARCH OVERLAY --- */
.search-bar-overlay {
    position: fixed; inset: 0; z-index: 3000; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--ks-transition);
}
.search-bar-overlay.is-active { opacity: 1; visibility: visible; }

.search-form-wrapper { width: 100%; max-width: 800px; padding: 20px; text-align: center; }
.search-subtitle { display: block; margin-bottom: 15px; font-weight: 700; color: var(--ks-indigo); text-transform: uppercase; letter-spacing: 1px; }

.search-field-large {
    width: 100%; border: none; border-bottom: 2px solid #eee; padding: 20px 0;
    font-size: 2.5rem; font-family: 'Archivo', sans-serif; font-weight: 800;
    outline: none; background: transparent; text-align: center; transition: border-color 0.3s;
}
.search-field-large:focus { border-color: var(--ks-indigo); }