/* ==========================================================
   SEARCH — homepage destination search input.
   Part of the CiaoCity modular stylesheet system.
   Design tokens live in base.css — do not redefine colors here.
   Typing filters the cities grid directly (see filters.js's
   .city-card / .blog-empty-state styles) — there is no dropdown here.
   ========================================================== */

.search-wrapper {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 4px;
    position: relative;
}

.search-wrapper input {
    width: 100%;
    height: 48px;
    padding: 0 20px 0 44px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0,0,0,0.05);
    background: white;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    transition: all 0.25s ease;
}

.search-wrapper input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.search-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
