#category-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

/* ===== Pins ===== */

.dnw-map-pin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* ===== Cluster ===== */

.dnw-map-cluster {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transform: translate(50%, 50%);
    cursor: pointer;
}

/* ===== InfoWindow Chrome Overrides ===== */

.gm-style-iw-ch {
    display: none !important;
}

.gm-style-iw-c {
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 12px !important;
}

.gm-style-iw {
    overflow: visible !important;
}

.gm-style-iw-d {
    padding: 12px;
    overflow: visible !important;
    max-height: none !important;
}

.gm-style-iw-t::after {
    display: none !important;
}

.gm-ui-hover-effect {
    display: none !important;
}

/* ===== Popup Card ===== */

.dnw-map-popup {
    display: block;
    max-width: 300px !important;
    color: inherit;
    text-decoration: none;
}

.dnw-map-popup:hover {
    cursor: pointer;
}

.dnw-map-popup__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    margin-bottom: 8px;
}

.dnw-map-popup__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    text-decoration: none;
}

.dnw-map-popup:hover .dnw-map-popup__title {
    text-decoration: underline;
}

.dnw-map-popup__excerpt {
    font-size: 12px;
    line-height: 1.4;
}

.dnw-map-pin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transform: translate(35%, 70%);
}

.gm-ui-hover-effect {
    display: none !important;
}

.gm-style-iw-c {
    padding: 0 !important;
    box-shadow: none;
    border-radius: 12px;
}

.gm-style-iw-t::after {
    display: none;
}

.gm-style-iw,
.gm-style-iw-d {
    overflow: visible !important;
    max-height: none !important;
}

.gm-style-iw-d > div {
    overflow: visible !important;
    max-height: none !important;
}

.gm-style img {
    max-width: none !important;
}