:root {
    --accessible-green: #35a86b;
    --accessible-yellow: #e2b84b;
    --accessible-gray: #8d98a6;
    --accessible-hotel: #2379d6;
    --accessible-attraction: #2e9e5b;
    --accessible-ink: #172033;
    --accessible-muted: #657186;
    --accessible-line: rgba(100, 116, 139, .2);
    --accessible-panel: rgba(255, 255, 255, .92);
    --accessible-left-width: 292px;
    --accessible-right-width: 344px;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    color: var(--accessible-ink);
    background: #dce2e7;
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.accessible-dashboard {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}

.accessible-map {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dashboard-header {
    position: absolute;
    top: 16px;
    left: calc(var(--accessible-left-width) + 18px);
    right: calc(var(--accessible-right-width) + 18px);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 10px 14px 10px 18px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 40px rgba(23, 32, 51, .14);
    backdrop-filter: blur(18px);
}

.dashboard-title-wrap {
    min-width: 0;
}

.dashboard-eyebrow {
    margin: 0 0 2px;
    color: #23835b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.dashboard-title {
    margin: 0;
    overflow: hidden;
    font-size: clamp(18px, 1.55vw, 28px);
    font-weight: 850;
    letter-spacing: -.02em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-header-meta {
    flex: 0 0 auto;
    margin-left: 16px;
    color: var(--accessible-muted);
    font-size: 12px;
    text-align: right;
}

.dashboard-header-meta strong {
    display: block;
    color: var(--accessible-ink);
    font-size: 13px;
}

.dashboard-panel {
    position: absolute;
    top: 16px;
    bottom: 16px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 22px;
    background: var(--accessible-panel);
    box-shadow: 0 18px 52px rgba(23, 32, 51, .17);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.region-panel {
    left: 16px;
    width: var(--accessible-left-width);
}

.explanation-panel {
    right: 16px;
    width: var(--accessible-right-width);
}

.panel-heading {
    flex: 0 0 auto;
    padding: 20px 20px 14px;
    border-bottom: 1px solid var(--accessible-line);
}

.panel-kicker {
    margin: 0 0 5px;
    color: #23835b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.panel-heading h2 {
    margin: 0;
    font-size: 20px;
}

.panel-subtitle {
    margin: 6px 0 0;
    color: var(--accessible-muted);
    font-size: 12px;
    line-height: 1.55;
}

.province-search {
    position: relative;
    flex: 0 0 auto;
    margin: 14px 16px 10px;
}

.province-search i {
    position: absolute;
    top: 50%;
    left: 13px;
    color: #8490a2;
    transform: translateY(-50%);
}

.province-search input {
    width: 100%;
    min-height: 42px;
    padding: 9px 12px 9px 38px;
    border: 1px solid var(--accessible-line);
    border-radius: 12px;
    outline: 0;
    background: rgba(248, 250, 252, .9);
    color: var(--accessible-ink);
}

.province-search input:focus {
    border-color: rgba(35, 131, 91, .55);
    box-shadow: 0 0 0 3px rgba(35, 131, 91, .12);
}

.region-directory {
    flex: 1 1 auto;
    padding: 2px 14px 18px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
}

.region-group {
    margin-top: 14px;
}

.region-group h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 4px 7px;
    color: #718096;
    font-size: 11px;
    letter-spacing: .08em;
}

.region-group h3::after {
    width: auto;
    height: 1px;
    flex: 1;
    background: var(--accessible-line);
    content: "";
}

.province-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.province-link {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    padding: 9px 8px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #354157;
    font-size: 13px;
    text-decoration: none;
    transition: .18s ease;
}

.province-link:hover,
.province-link:focus-visible,
.province-link.is-active {
    border-color: rgba(35, 131, 91, .24);
    background: rgba(35, 131, 91, .09);
    color: #176744;
    outline: 0;
}

.province-link[hidden] {
    display: none;
}

.score-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: var(--accessible-gray);
    box-shadow: 0 0 0 3px rgba(141, 152, 166, .13);
}

.score-dot--good {
    background: var(--accessible-green);
    box-shadow: 0 0 0 3px rgba(53, 168, 107, .13);
}

.score-dot--mixed {
    background: var(--accessible-yellow);
    box-shadow: 0 0 0 3px rgba(226, 184, 75, .15);
}

.province-link-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.province-link-score {
    margin-left: auto;
    color: #8490a2;
    font-size: 10px;
}

.explanation-scroll {
    flex: 1 1 auto;
    padding: 16px 18px 22px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.stat-card {
    min-height: 74px;
    padding: 12px;
    border: 1px solid var(--accessible-line);
    border-radius: 14px;
    background: rgba(248, 250, 252, .82);
}

.stat-card strong {
    display: block;
    font-size: 23px;
    line-height: 1.15;
}

.stat-card span {
    color: var(--accessible-muted);
    font-size: 11px;
}

.province-summary {
    margin-top: 12px;
    padding: 16px;
    border: 1px solid rgba(35, 131, 91, .18);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(236, 249, 242, .94), rgba(250, 252, 251, .94));
}

.province-summary-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.province-summary-label {
    margin: 0 0 3px;
    color: #23835b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.province-summary h3 {
    margin: 0;
    font-size: 20px;
}

.province-score {
    flex: 0 0 auto;
    min-width: 54px;
    color: #176744;
    font-size: 25px;
    font-weight: 850;
    text-align: right;
}

.province-score small {
    color: var(--accessible-muted);
    font-size: 10px;
    font-weight: 600;
}

.province-breakdown {
    display: flex;
    gap: 14px;
    margin-top: 12px;
    color: var(--accessible-muted);
    font-size: 11px;
}

.province-breakdown strong {
    color: var(--accessible-ink);
    font-size: 14px;
}

.province-tip {
    margin: 12px 0 0;
    color: #4d5a6d;
    font-size: 12px;
    line-height: 1.65;
}

.province-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 11px;
    color: #176744;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.explanation-section {
    margin-top: 18px;
}

.explanation-section h3 {
    margin: 0 0 9px;
    font-size: 14px;
}

.legend-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legend-item {
    display: grid;
    grid-template-columns: 13px 56px 1fr;
    align-items: center;
    gap: 8px;
    color: var(--accessible-muted);
    font-size: 11px;
}

.legend-swatch {
    width: 13px;
    height: 13px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(23, 32, 51, .18);
}

.legend-swatch--good {
    background: var(--accessible-green);
}

.legend-swatch--mixed {
    background: var(--accessible-yellow);
}

.legend-swatch--scarce {
    background: var(--accessible-gray);
}

.score-note {
    margin: 10px 0 0;
    color: var(--accessible-muted);
    font-size: 11px;
    line-height: 1.65;
}

.faq-list {
    display: grid;
    gap: 7px;
}

.faq-list details {
    border: 1px solid var(--accessible-line);
    border-radius: 11px;
    background: rgba(248, 250, 252, .7);
}

.faq-list summary {
    position: relative;
    padding: 11px 32px 11px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 10px;
    right: 12px;
    color: #718096;
    content: "+";
    font-size: 16px;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin: 0;
    padding: 0 12px 12px;
    color: var(--accessible-muted);
    font-size: 11px;
    line-height: 1.7;
}

.map-controls {
    position: absolute;
    left: calc(var(--accessible-left-width) + 18px);
    bottom: 18px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 8px;
}

.type-filter {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 13px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 30px rgba(23, 32, 51, .14);
    color: var(--accessible-ink);
    cursor: pointer;
    backdrop-filter: blur(14px);
}

.type-filter input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.type-filter-icon {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
}

.type-filter--hotel .type-filter-icon {
    background: var(--accessible-hotel);
}

.type-filter--attraction .type-filter-icon {
    background: var(--accessible-attraction);
}

.type-filter:has(input:not(:checked)) {
    opacity: .52;
}

.type-filter:focus-within {
    outline: 3px solid rgba(35, 121, 214, .2);
}

.map-status {
    position: absolute;
    left: 50%;
    bottom: 19px;
    z-index: 28;
    max-width: min(420px, 45vw);
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 10px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 8px 24px rgba(23, 32, 51, .12);
    color: var(--accessible-muted);
    font-size: 11px;
    text-align: center;
    transform: translateX(-50%);
    backdrop-filter: blur(12px);
}

.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 45;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 13px;
    background: rgba(23, 32, 51, .86);
    color: #fff;
    font-size: 13px;
    transform: translate(-50%, -50%);
}

.map-loading[hidden] {
    display: none;
}

.facility-marker,
.facility-cluster {
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50% 50% 50% 12px;
    color: #fff;
    box-shadow: 0 5px 16px rgba(23, 32, 51, .3);
    transform: rotate(-45deg);
}

.facility-marker {
    width: 34px;
    height: 34px;
    font-size: 14px;
}

.facility-marker > *,
.facility-cluster > * {
    transform: rotate(45deg);
}

.facility-marker--hotel,
.facility-cluster--hotel {
    background: var(--accessible-hotel);
}

.facility-marker--attraction,
.facility-cluster--attraction {
    background: var(--accessible-attraction);
}

/* 缩略图圆形 marker：用设施缩略图作背景，统一细白边 */
.facility-marker--thumb {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e2e8f0;
    transform: none;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(23, 32, 51, .28);
}

.facility-cluster {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transform: none;
}

.facility-cluster > * {
    transform: none;
}

.facility-cluster-content {
    display: grid;
    place-items: center;
    line-height: 1;
}

.facility-cluster-content strong {
    margin-top: 2px;
    font-size: 11px;
}

.facility-info {
    width: 260px;
    padding: 2px 2px 3px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.facility-info-label {
    margin: 0 0 4px;
    color: #667085;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.facility-info h4 {
    margin: 0;
    color: #172033;
    font-size: 15px;
}

.facility-info-address {
    margin: 6px 0;
    color: #657186;
    font-size: 11px;
    line-height: 1.5;
}

.facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 8px 0;
}

.facility-tag {
    padding: 3px 6px;
    border-radius: 6px;
    background: #eef6f2;
    color: #176744;
    font-size: 10px;
}

.facility-info a {
    display: inline-flex;
    margin-top: 4px;
    color: #176744;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

/* POI 类型 TAB 切换 */
.poi-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.poi-tab-buttons {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(248, 250, 252, .6);
    border-radius: 11px;
}

.poi-tab-btn {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--accessible-muted);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.poi-tab-btn:hover {
    color: var(--accessible-ink);
}

.poi-tab-btn.is-active {
    background: #fff;
    color: var(--accessible-ink);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .12);
}

.poi-tab-content {
    display: none;
}

.poi-tab-content.is-active {
    display: block;
}

.city-poi-links {
    display: grid;
    gap: 6px;
}

.city-poi-link {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: rgba(248, 250, 252, .6);
}

.city-poi-link:hover,
.city-poi-link:focus-within {
    border-color: var(--accessible-line);
    background: rgba(248, 250, 252, .95);
    outline: 0;
}

.city-poi-link[hidden] {
    display: none;
}

.city-poi-title {
    flex: 1 1 auto;
    min-width: 0;
    color: #354157;
    text-decoration: none;
    display: block;
}

.city-poi-title:hover strong {
    color: var(--accessible-ink);
}

.city-poi-link strong,
.city-poi-link small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.city-poi-link strong {
    font-size: 12px;
}

.city-poi-link small {
    margin-top: 2px;
    color: var(--accessible-muted);
    font-size: 10px;
}

.city-poi-locate {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--accessible-muted);
    cursor: pointer;
    font-size: 13px;
    transition: all .15s ease;
}

.city-poi-locate:hover {
    background: rgba(79, 110, 247, .12);
    color: #4f6ef7;
}

.city-poi-icon {
    display: inline-grid;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
}

.city-poi-icon--hotel {
    background: var(--accessible-hotel);
}

.city-poi-icon--attraction {
    background: var(--accessible-attraction);
}

/* 图例中的缩略图 marker 样例 */
.legend-marker {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(23, 32, 51, .2);
    background: #e2e8f0;
    vertical-align: middle;
}

/* 图例中的图标 marker 样例 */
.legend-marker-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50% 50% 50% 12px;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(23, 32, 51, .25);
    transform: rotate(-45deg);
    vertical-align: middle;
}

.legend-marker-icon > * {
    transform: rotate(45deg);
}

.legend-marker-icon--hotel {
    background: var(--accessible-hotel);
}

.legend-marker-icon--attraction {
    background: var(--accessible-attraction);
}

.legend-marker--hotel {
    border-color: var(--accessible-hotel);
}

.legend-marker--attraction {
    border-color: var(--accessible-attraction);
}

.city-directory-more {
    margin: 18px 5px 4px;
}

.mobile-panel-button {
    display: none;
}

.mobile-scrim {
    display: none;
}

.no-script-notice {
    position: absolute;
    left: 50%;
    bottom: 72px;
    z-index: 60;
    width: min(520px, calc(100% - 36px));
    padding: 12px 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(23, 32, 51, .18);
    color: var(--accessible-ink);
    font-size: 13px;
    text-align: center;
    transform: translateX(-50%);
}

@media (max-width: 1250px) {
    :root {
        --accessible-left-width: 252px;
        --accessible-right-width: 310px;
    }

    .province-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    :root {
        --accessible-left-width: min(320px, calc(100vw - 52px));
        --accessible-right-width: min(350px, calc(100vw - 52px));
    }

    .dashboard-header {
        top: 12px;
        left: 62px;
        right: 62px;
        min-height: 54px;
    }

    .dashboard-header-meta {
        display: none;
    }

    .dashboard-title {
        font-size: 18px;
    }

    .dashboard-panel {
        top: 10px;
        bottom: 10px;
        transition: transform .24s ease;
    }

    .region-panel {
        left: 10px;
        transform: translateX(calc(-100% - 18px));
    }

    .explanation-panel {
        right: 10px;
        transform: translateX(calc(100% + 18px));
    }

    .accessible-dashboard[data-open-panel="regions"] .region-panel,
    .accessible-dashboard[data-open-panel="explanation"] .explanation-panel {
        transform: translateX(0);
    }

    .mobile-scrim {
        position: absolute;
        inset: 0;
        z-index: 35;
        background: rgba(15, 23, 42, .34);
    }

    .accessible-dashboard[data-open-panel] .mobile-scrim {
        display: block;
    }

    .mobile-panel-button {
        position: absolute;
        top: 18px;
        z-index: 32;
        display: grid;
        width: 40px;
        height: 40px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .78);
        border-radius: 12px;
        background: rgba(255, 255, 255, .9);
        box-shadow: 0 8px 24px rgba(23, 32, 51, .16);
        color: var(--accessible-ink);
    }

    .mobile-panel-button--left {
        left: 12px;
    }

    .mobile-panel-button--right {
        right: 12px;
    }

    .map-controls {
        left: 12px;
        bottom: 12px;
    }

    .type-filter {
        padding: 8px;
    }

    .type-filter-label {
        display: none;
    }

    .map-status {
        right: 12px;
        bottom: 12px;
        left: auto;
        max-width: calc(100vw - 132px);
        transform: none;
    }
}

/* ============ 统一按钮样式（POI 弹窗 + 目地面板共用） ============ */
.poi-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
    transition: all .18s ease;
    white-space: nowrap;
}

.poi-action-btn--primary {
    background: linear-gradient(135deg, #4f6ef7, #6c5ce7);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(79, 110, 247, .32);
}

.poi-action-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(79, 110, 247, .42);
}

.poi-action-btn--added {
    background: linear-gradient(135deg, #35a86b, #2d9c5f);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(53, 168, 107, .32);
}

.poi-action-btn--ghost {
    background: #fff;
    color: var(--accessible-ink);
    border-color: var(--accessible-line);
}

.poi-action-btn--ghost:hover {
    background: #f1f5f9;
    border-color: var(--accessible-muted);
}

/* ============ 目的地区块（嵌在 explanation-panel 内，非浮动） ============ */
.destinations-section {
    margin: 14px 0;
    padding: 14px;
    border-radius: 14px;
    background: rgba(241, 245, 249, .6);
    border: 1px solid var(--accessible-line);
}

.destinations-section h3 {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accessible-ink);
    display: flex;
    align-items: center;
    gap: 6px;
}

.destinations-list {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.destinations-empty {
    padding: 14px 8px;
    text-align: center;
    color: var(--accessible-muted);
    font-size: 12px;
    line-height: 1.6;
}

.destinations-empty i {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
    opacity: .5;
}

.destinations-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--accessible-line);
}

.destinations-index {
    flex: 0 0 20px;
    height: 20px;
    width: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f6ef7, #6c5ce7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.destinations-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.destinations-info strong {
    font-size: 13px;
    color: var(--accessible-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.destinations-info small {
    font-size: 10px;
    color: var(--accessible-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.destinations-remove {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: none;
    background: transparent;
    color: var(--accessible-muted);
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all .15s ease;
}

.destinations-remove:hover {
    background: #fee;
    color: #e74c3c;
}

.destinations-actions {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 8px;
}

.destinations-actions .poi-action-btn--primary {
    flex: 1 1 auto;
    justify-content: center;
}

/* ============ POI 自定义弹窗（图片 + 简介 + 加入目的地） ============ */
.poi-popup {
    min-width: 220px;
    max-width: 280px;
    padding: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(23, 32, 51, .22);
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

.poi-popup-image-wrap {
    width: 100%;
    height: 140px;
    background: #f1f5f9;
    overflow: hidden;
}

.poi-popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.poi-popup .facility-info-label {
    margin: 12px 14px 4px;
    color: var(--accessible-muted);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.poi-popup h4 {
    margin: 0 14px 6px;
    font-size: 16px;
    color: var(--accessible-ink);
}

.poi-popup .facility-info-address {
    margin: 0 14px 6px;
    font-size: 12px;
    color: var(--accessible-muted);
}

.poi-popup-desc {
    margin: 0 14px 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #475569;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.poi-popup-actions {
    display: flex;
    gap: 6px;
    padding: 0 14px 14px;
    flex-wrap: wrap;
}

