.travel-map-page {
    background: radial-gradient(circle at 12% 10%, rgba(213, 161, 74, .2), transparent 28rem), linear-gradient(180deg, #f7f0d9 0%, #ffffff 46%, #e7f3ee 100%);
}

.travel-map-hero {
    min-height: 320px;
    padding: 130px 36px 44px;
}

.travel-map-hero .travel-topic-hero__content {
    /*max-width: 840px;*/
    text-align:center;
}

    .travel-map-hero h1 {
        color: #7f4d20;
        font-size: clamp(2.1rem, 3vh, 4.4rem);
        font-weight: 650;
        line-height: 1.24;
        text-transform: uppercase;
        text-shadow: 0 2px 0 rgba(255, 255, 255, .45);
    }

    .travel-map-hero p {
        max-width: 650px;
        margin: 18px auto 0;
        color: #173a45;
        font-size: 1.1rem;
        font-weight: 600;
    }

.travel-map-section {
    padding: 34px 24px 36px;
}

.map-side-panel {
    height: 100%;
    border: 1px solid rgba(213, 161, 74, .42);
    border-radius: 20px;
    background: linear-gradient(180deg, #fff8e6, #fffdf7);
    box-shadow: 0 14px 26px rgba(5, 63, 78, .1);
    overflow: hidden;
}

.map-side-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(213, 161, 74, .35);
}

.map-side-panel__header h3 {
    margin: 0;
    color: #7f4d20;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.map-side-panel__header span {
    border-radius: 999px;
    padding: 6px 10px;
    background: #f2d79d;
    color: #5d3c18;
    font-size: .78rem;
    font-weight: 800;
}

.map-side-panel__list {
    max-height: 660px;
    overflow-y: auto;
    padding: 12px;
}

.map-place-card {
    display: flex;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(127, 77, 32, .18);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(8, 53, 75, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    cursor: pointer;
}

.map-place-card + .map-place-card {
    margin-top: 10px;
}

.map-place-card:hover,
.map-place-card:focus,
.map-place-card.active {
    transform: translateY(-2px);
    border-color: rgba(10, 125, 82, .7);
    box-shadow: 0 10px 22px rgba(10, 93, 116, .16);
}

.map-place-card__thumb {
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    overflow: hidden;
    border-radius: 12px;
}

.map-place-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-place-card__body {
    min-width: 0;
}

.map-place-card__body h4 {
    margin: 2px 0 6px;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
}

.map-place-card__body h4 a {
    color: #123e52;
    text-decoration: none;
}

.map-place-card__body p {
    margin: 0;
    color: #32545f;
    font-size: .87rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.travel-map-wrap {
    position: relative;
    min-height: 660px;
    border: 1px solid rgba(213, 161, 74, .58);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(5, 63, 78, .14);
    overflow: hidden;
}

#travel-map {
    width: 100%;
    min-height: 660px;
}

.travel-place-marker {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 241, 192, .95);
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(180deg, #0f738f, #0d5c6f);
    color: #ffe7b0;
    font-size: 16px;
    transform: rotate(-45deg);
    box-shadow: 0 8px 16px rgba(8, 53, 75, .35);
}

.travel-place-marker i {
    transform: rotate(45deg);
}

.travel-map-tooltip {
    border: 1px solid rgba(213, 161, 74, .7);
    border-radius: 10px;
    background: #fff4ce;
    color: #3f2a13;
    font-weight: 700;
    font-size: .78rem;
    padding: 4px 8px;
    box-shadow: 0 4px 10px rgba(5, 63, 78, .18);
    white-space: nowrap;
}

.travel-map-tooltip::before {
    border-top-color: rgba(213, 161, 74, .7) !important;
}

.travel-map-tooltip__name {
    display: block;
    font-weight: 800;
    color: #12465c;
    font-size: .82rem;
    line-height: 1.2;
}

.travel-map-tooltip__desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #345760;
    font-size: .76rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.35;
    max-width: 220px;
    margin-bottom: 3px;
    white-space: normal;
}

.travel-map-popup-wrap .leaflet-popup-content-wrapper {
    border: 1px solid rgba(213, 161, 74, .58);
    border-radius: 16px;
    background: #fffef8;
}

.travel-map-popup-wrap .leaflet-popup-content {
    margin: 14px 14px 12px;
}

.map-popup h4 {
    margin: 0 0 6px;
    color: #12465c;
    font-size: 1.02rem;
    font-weight: 900;
}

.map-popup p {
    margin: 0;
    color: #345760;
    font-size: .9rem;
    line-height: 1.45;
}

.map-popup__actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.popup-action {
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.25;
}

.popup-action--tour {
    border: 2px solid rgba(7, 93, 132, .22);
    background: rgba(7, 93, 132, .9);
    color:wheat!important;
}

.popup-action--disabled {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 10px;
    border: 1px solid rgba(100, 100, 100, .35);
    color: #7f7f7f;
    background: #f2f2f2;
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.map-empty-state {
    margin: 4px;
    padding: 16px;
    border-radius: 14px;
}

@media (max-width: 991.98px) {
    .travel-map-hero {
        min-height: 260px;
        padding: 100px 20px 38px;
    }

    .travel-map-section {
        padding: 26px 16px;
    }

    .map-side-panel__list,
    .travel-map-wrap,
    #travel-map {
        min-height: 520px;
    }
}

@media (max-width: 767.98px) {
    .map-side-panel__list {
        max-height: 360px;
    }

    .travel-map-wrap,
    #travel-map {
        min-height: 440px;
    }

    .map-popup__actions {
        flex-wrap: wrap;
    }
}

