.geo-search-select {
    position: relative;
    width: 100%;
}

.geo-search-select__control {
    position: relative;
}

.geo-search-select__input {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    padding: 0 40px 0 16px;
    font-size: 14px;
    line-height: 1;
    color: #222;
    background-color: #fff;
    box-shadow: none;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.geo-search-select__input::placeholder {
    color: #8c8c8c;
}

.geo-search-select__input:focus {
    border-color: #ffb300;
    box-shadow: 0 0 0 1px rgba(255, 179, 0, 0.25);
}

.geo-search-select.is-disabled .geo-search-select__input {
    background-color: #f7f7f7;
    color: #8c8c8c;
    cursor: not-allowed;
}

.geo-search-select__toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
    pointer-events: none;
}

.geo-search-select:not(.is-disabled) .geo-search-select__toggle {
    pointer-events: auto;
}

.geo-search-select__toggle::before {
    content: '';
    display: block;
    width: 12px;
    height: 8px;
    margin: 0 auto;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 8px;
    transition: transform 0.15s ease;
}

.geo-search-select.is-open .geo-search-select__toggle::before {
    transform: rotate(180deg);
}

.geo-search-select__list {
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 240px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.geo-search-select__option,
.geo-search-select__empty {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 1.3;
    color: #222;
}

.geo-search-select__option {
    cursor: pointer;
}

.geo-search-select__option:hover,
.geo-search-select__option.is-active {
    background: rgba(255, 179, 0, 0.12);
}

.geo-search-select__empty {
    color: #8c8c8c;
}
