/* Подсказки городов — как в uni_quickcheckout */
.geo-city-suggestions {
    position: absolute;
    z-index: 9999;
    overflow-y: auto;
    min-width: 290px;
    max-width: calc(100vw - 20px);
    max-height: 350px;
    list-style: none;
    background: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .2);
}

.geo-city-suggestions::-webkit-scrollbar {
    width: 8px;
    background: #eee;
    border-radius: 4px;
}

.geo-city-suggestions::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.geo-city-suggestions li {
    padding: 4px 0;
    font-size: 14px;
    color: #333;
}

.geo-city-suggestions li:hover {
    text-decoration: underline;
    color: #05a550;
}

.geo-city-suggestions li + li {
    margin-top: 8px;
}

.geo-city-suggestions-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
}

/* Адаптив для мобильных */
@media (max-width: 575px) {
    .geo-city-suggestions {
        min-width: calc(100vw - 40px);
        left: 20px !important;
    }
    .geo-city-suggestions li {
        font-size: 13px;
    }
}