.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-search {
    position: relative;
    width: 320px;
    flex-shrink: 0;
}

.nav-search-form {
    position: relative;
}

.nav-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(67, 26, 103, 0.42);
    font-size: 17px;
    pointer-events: none;
}

.nav-search-input {
    width: 100%;
    height: 52px;
    border: 2px solid rgba(67, 26, 103, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--dark-purple);
    font-size: 16px;
    font-weight: 700;
    padding: 0 18px 0 48px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 24px rgba(67, 26, 103, 0.08);
}

.nav-search-input::placeholder {
    color: rgba(67, 26, 103, 0.44);
}

.nav-search-input:focus {
    border-color: rgba(176, 87, 197, 0.5);
    box-shadow: 0 12px 34px rgba(176, 87, 197, 0.22);
}

.nav-search-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(67, 26, 103, 0.1);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(31, 16, 45, 0.2);
    overflow: hidden;
    z-index: 150;
}

.nav-search-dropdown.hidden {
    display: none;
}

.nav-search-section-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(67, 26, 103, 0.55);
    padding: 16px 20px 10px;
}

.nav-search-row {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 20px;
    color: inherit;
    text-decoration: none;
    border-top: 1px solid rgba(67, 26, 103, 0.06);
    transition: background-color 0.15s ease;
}

.nav-search-row:first-of-type {
    border-top: none;
}

.nav-search-row.is-active,
.nav-search-row:hover {
    background: rgba(176, 87, 197, 0.12);
}

.nav-search-sprite {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(67, 26, 103, 0.08), rgba(176, 87, 197, 0.15));
    object-fit: contain;
    padding: 6px;
    box-sizing: border-box;
}

.nav-search-icon-tile {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(67, 26, 103, 0.08), rgba(176, 87, 197, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    font-size: 18px;
}

.nav-search-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-purple);
}

.nav-search-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: rgba(67, 26, 103, 0.6);
    margin-top: 4px;
}

.nav-search-footer {
    display: block;
    padding: 14px 20px 18px;
    border-top: 1px solid rgba(67, 26, 103, 0.08);
    font-size: 13px;
    font-weight: 800;
    color: rgba(67, 26, 103, 0.68);
}

.nav-search-empty {
    padding: 18px 20px 20px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(67, 26, 103, 0.6);
}

@media only screen and (max-width: 1280px) {
    .nav-search {
        width: 260px;
    }
}

@media only screen and (max-width: 1100px) {
    .nav-search {
        display: none;
    }
}
