.map-wrapper {
    width: 100% !important;
    height: auto;
}

.map-container {
    position: relative;
    width: 100% !important;
    aspect-ratio: 95 / 62;
    height: auto !important;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.map-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85);
    transition: transform 0.25s ease;
}

.map-dot:hover {
    transform: translate(-50%, -50%) scale(1.3);
    z-index: 20;
}

.dot-elizabeth {
    background-color: #ca2030;
}

.dot-distributor {
    background-color: #0F172A;
}

.map-dot .tooltip {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    padding: 1rem;
    background-color: #0F172A;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, bottom 0.25s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.map-dot:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 34px;
}

.map-dot .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #0F172A transparent transparent transparent;
}

.tooltip span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ca2030;
    font-weight: 700;
}

.tooltip h5 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    color: #ffffff;
}

.tooltip p {
    margin: 0;
    font-size: 0.8rem;
    color: #CBD5E1;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .map-dot .tooltip {
        display: none;
    }
}