/* ── NCOBAUK Member Map Section ── */

.ncobauk-member-map-section {
    background: linear-gradient(135deg, #820906 0%, #5a0604 100%);
    padding: 36px 0 44px;
    position: relative;
    overflow: hidden;
}

.ncobauk-member-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.ncobauk-mm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.ncobauk-mm-header {
    text-align: center;
    margin-bottom: 24px;
}

.ncobauk-mm-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.ncobauk-mm-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

/* Content */
.ncobauk-mm-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Map */
.ncobauk-mm-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.ncobauk-mm-map {
    width: 100%;
    height: 380px;
    background: #1a1a2e;
}

/* Leaflet marker styles */
.ncobauk-mm-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #820906;
    color: #fff;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: 0 2px 8px rgba(130, 9, 6, 0.5);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.ncobauk-mm-marker:hover {
    transform: scale(1.15);
    z-index: 1000 !important;
}

.ncobauk-mm-marker--sm {
    width: 28px;
    height: 28px;
    font-size: 11px;
}

.ncobauk-mm-marker--md {
    width: 36px;
    height: 36px;
    font-size: 13px;
}

.ncobauk-mm-marker--lg {
    width: 44px;
    height: 44px;
    font-size: 15px;
}

.ncobauk-mm-marker--xl {
    width: 54px;
    height: 54px;
    font-size: 17px;
}

/* Popup styling */
.ncobauk-mm-popup .leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.ncobauk-mm-popup .leaflet-popup-content {
    margin: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
}

.ncobauk-mm-popup-name {
    font-weight: 700;
    color: #333;
    display: block;
}

.ncobauk-mm-popup-count {
    color: #820906;
    font-weight: 600;
    font-size: 13px;
}

/* Loading state */
.ncobauk-mm-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .ncobauk-member-map-section {
        padding: 28px 0 32px;
    }

    .ncobauk-mm-title {
        font-size: 20px;
    }

    .ncobauk-mm-map {
        height: 280px;
    }
}
