.rd-map-el__grid {
    display: grid;
    margin: 0px 0px;
    grid: auto / 40% 50%;
    gap: 15px;
	padding-bottom: 10px;
    align-items: center;
    justify-content: center;
}

.rd-map-el__header {
    display: none;
}

.rd-map-el__empty {
    text-align: center;
    padding: 20px 0px;
    font-weight: bold;
}

.rd-map-el__sidebar {
    display: flex;
    align-items: flex-start;
    background-color: #E66F9C;
    padding: 20px 100px 20px 30px;
    color: white;
    border-radius: 30px;
	width: 100%;
    overflow-y: auto;
    min-height: 400px;
    max-height: 400px;
    flex-direction: column;
    justify-content: center;
    min-width: 35vw;
}

.rd-map-el__map {
    margin-left: -120px;
}

.rd-map-el__map SVG {
    width: 60vw;
    max-width: 60rem;
}

ul.rd-map-el__list_header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 0;
    padding: 20px 20px;
    list-style: none;
    background-color: #3F306F;
    color: #fff;
    border-radius: 30px 30px 0px 0px;
    align-items: center;
	font-weight: 900;
}

li.rd-map-el__item {
    display: grid;
    grid: auto / 5% 95%;
    gap: 15px;
    margin: 0;
    padding: 3px 0px;
    list-style: none;
    align-items: center;
    font-weight: 400;
    justify-items: start;
}

/*li.rd-map-el__item:hover {*/
/*    background-color: #b08a8e;*/
/*	font-weight: bold;*/
/*}*/

ul.rd-map-el__list {
    margin: 0;
    padding: 0;
	max-height: 769px;
    width: 100%;
    overflow: auto;
}

.rd-map-el__btn {
    color: white;
}

.rd-map-el__btn:hover {
    color: white;
    font-weight: bold;
}

button.rd-map-el__chip.rd-map-el__chip--all {
    background-color: transparent;
    border: 1px solid #3f3070;
    border-radius: 3px;
    color: #3f3070;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.5rem 3rem;
    text-align: center;
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.rd-map-el__filters {
    display: none;
}

select.rd-map-el__select-mobile {
    background-color: #E66F9C;
    color: white;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 10px;
    width: 93%;
    font-size: x-large;
    font-weight: 600;
}

.rd-map-el__header {
    margin-bottom: 30px;
}

/* ─── SVG Map Province Styling ─── */

/* Default province fill: light pink */
.rd-map-el__map path {
    fill: #f8e8ec;
    stroke: #b08a8e;
    stroke-width: 0.8;
    cursor: pointer;
    outline: none;
    transition: fill 0.2s ease;
}

/* Hover: slightly deeper pink */
.rd-map-el__map path:hover {
    fill: #f0d0d8;
    opacity: 1;
}

/* Active/selected province: strong pink */
.rd-map-el__map .is-active {
    fill: #d4899a !important;
    stroke: #b08a8e !important;
    stroke-width: 1;
    /*transition: fill 0.2s ease;*/
}

/* ─── Pin Markers ─── */
.rd-map-el__pin {
    cursor: pointer;
    transition: transform 0.2s ease;
}

/*.rd-map-el__pin:hover {*/
/*    transform: scale(1.15);*/
/*}*/

.rd-map-el__pin circle {
    fill: #fff;
    stroke: #d4899a;
    stroke-width: 1.5;
}

.rd-map-el__pin image {
    pointer-events: none;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {

    .rd-map-el__grid {
        display: grid;
        grid: auto / 100%;
        gap: 15px;
        padding-bottom: 10px;
        align-items: center;
        justify-content: center;
    }

    .rd-map-el__sidebar {
        display: flex;
        align-items: flex-start;
        background-color: #E66F9C;
        padding: 190px 40 30px 40px;
        color: white;
        border-radius: 30px;
        width: 90vw;
        overflow-y: auto;
        min-height: 400px;
        max-height: 400px;
        flex-direction: column;
        justify-content: center;
        justify-self: stretch;
        order: 1;
        margin-top: -185px;
        margin-left: 10px;
        margin-right: 26px;
        z-index: 0;
    }

    .rd-map-el__map {
        margin-left: 0px;
        max-width: 100%;
        justify-items: anchor-center;
        order: 0;
        z-index: 1;
    }

    .rd-map-el__map SVG {
        width: 100% !important;
    }

    .rd-map-el__select-mobile {
        display: block;
        width: 100%;
        padding: 10px;
        margin-bottom: 12px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 15px;
    }

    .rd-map-el__header {
        display: block;
    }

    .rd-map-el__filters {
        display: block;
        width: 100%;
    }
}
