/* ===== CityFields: утилиты видимости ===== */
.cf-show { display: block !important; }
.cf-hide { display: none !important; }
.cf-cities { max-height: 300px; overflow-y: auto; }
.cf-error { display: none; color: #dc2626; font-size: 12px; margin-top: 8px; }
.cf-error.cf-show { display: block; }

/* Модальное окно */
.cf-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.cf-modal.cf-show { display: flex !important; }
.cf-modal-dialog {
    background: #fff;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}
.cf-modal-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cf-btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}
.cf-modal-body { padding: 1rem; }
.cf-form-search { margin-bottom: 1rem; }
.cf-form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.375rem;
}
#cfCities li { list-style: none; padding: 0.25rem 0; }
#cfCities a {
    display: block;
    padding: 0.5rem;
    color: #111827;
    text-decoration: none;
    border-radius: 0.25rem;
}
#cfCities a:hover { background: #f3f4f6; }