/* ── Location chip-input ─────────────────────────────── */
.sr-loc-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px;
    padding: 0 10px;
    min-height: 42px;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    cursor: text;
    transition: border-color .15s;
}
.sr-loc-wrap:focus-within {
    border-color: var(--accent, #1a6b4a);
    box-shadow: 0 0 0 2px rgba(26,92,53,.1);
}

.sr-loc-icon {
    position: static;
    transform: none;
    color: #aaa;
    font-size: .8rem;
    flex-shrink: 0;
    pointer-events: none;
}

/* Chip */
.sr-loc-chip {
    display: none;
    align-items: center;
    gap: 6px;
    background: #1a5c35;
    color: #fff;
    border-radius: 20px;
    padding: 4px 8px 4px 12px;
    font-size: .82rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 220px;
}
.sr-loc-chip__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sr-loc-chip__x {
    background: none;
    border: none;
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: color .12s;
}
.sr-loc-chip__x:hover { color: #fff; }

/* Input след chip */
.sr-loc-in {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent;
    font-size: .88rem;
    min-width: 60px;
    padding: 0 !important;
    height: auto !important;
    color: #333;
    box-shadow: none !important;
}
.sr-loc-in::placeholder { color: #bbb; }

/* Скрий стария × бутон */
.sr-loc-clear { display: none !important; }