.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--primary-teal, #0b3d33);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: transform 0.2s ease, background 0.2s;
}

.map-pin:hover, .map-pin.active {
    background: var(--primary-orange, #d35400);
    transform: translate(-50%, -50%) scale(1.2);
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: rgba(139, 90, 43, 0.4); /* subtle orange pulse */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.map-tooltip {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: 'Bitter', serif;
}

.map-tooltip.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -10px);
}

.map-tooltip h4 {
    margin: 0 0 0.4rem 0;
    font-family: 'Abril Fatface', cursive;
    font-size: 1.2rem;
    color: var(--primary-teal, #0b3d33);
}

.map-tooltip p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--text-brown, #4a3b32);
}
