.where {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: #fff;
    z-index: 1;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Arial, Roboto, sans-serif;
    color: #222;
}

.where-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

.where-toolbar .icon-btn {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e2e6eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.where-toolbar .icon-btn img {
    width: 25px;
    height: 25px;
    display: block;
    object-fit: contain;
}

.where-search {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #e2e6eb;
    border-radius: 999px;
    background: #fff;
}

.where-search svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #8a8a8a;
    fill: none;
}

.where-search input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #222;
    padding: 0;
}

.where-search input::placeholder {
    color: #8a8a8a;
}

.where-list {
    padding: 8px 16px 24px;
}

.where-group + .where-group {
    margin-top: 20px;
}

.where-group .country {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    line-height: 1.3;
    padding: 12px 0 8px;
}

.where-group .country img {
    width: 22px;
    height: 22px;
    display: block;
    padding: 4px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #e2e6eb;
    object-fit: cover;
}

.resort-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 14px 0;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    font: inherit;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
}

.resort-item.selected {
    padding: 13px 14px;
    border-color: #e2e6eb;
}

.resort-item.selected::after {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
