/* 🕶️ Маскируем список темы: для jQuery он активен, для юзера невидим */
.city-popup .city-popup__list {
    position: absolute !important;
    top: 150px !important;
    left: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    width: 100% !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* 🏢 СЕТКА КОЛОНОК ДЛЯ НАШИХ РАЙОНОВ */
.custom-columns-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 15px !important;
    padding: 20px 0 !important;
    max-height: 60vh;
    overflow-y: auto;
    width: 100% !important;
    position: relative;
    z-index: 10;
    flex: none !important;
    clear: both !important;
}

.region-group-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    height: fit-content;
}

.region-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    cursor: pointer;
    user-select: none;
}
.region-group-header:hover {
    background: #eef1f3;
}

.region-group-title {
    font-weight: 600;
    font-size: 14px;
    color: #212529;
}

.region-group-links {
    list-style: none !important;
    padding: 5px 0 !important;
    margin: 0 !important;
    display: none;
    background: #fff;
    border-top: 1px solid #e9ecef;
}

.city-link-item a {
    display: block;
    padding: 6px 15px;
    font-size: 14px;
    color: #495057;
    text-decoration: none;
}
.city-link-item a:hover {
    background: #f1f5f9;
    color: #ffb703;
}

.region-group-card.is-open .region-group-links {
    display: block;
}