.bika-map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.bika-map-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    position: relative;
    touch-action: none;
}

.bika-map-container.grabbing {
    cursor: grabbing;
}

.bika-map-inner {
    position: absolute;
    transform-origin: 0 0;
    will-change: transform;
    user-select: none;
}

.bika-map-inner img {
    display: block;
    pointer-events: none;
    max-width: none;
}

/* Markers */
.bika-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 4px;
    direction: rtl;
    padding: 10px;
}

.bika-marker-dot {
    width: 14px;
    height: 14px;
    background: #e74c3c;
    border: 2.5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
    flex-shrink: 0;
    transition: transform 0.2s, background 0.2s;
}

.bika-marker:hover .bika-marker-dot {
    transform: scale(1.3);
    background: #c0392b;
}

.bika-marker-label {
    background: rgba(255,255,255,0.92);
    color: #2c3e50;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    pointer-events: none;
}

/* Controls */
.bika-map-controls {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.bika-map-controls button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.92);
    color: #333;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: background 0.15s;
    line-height: 1;
}

.bika-map-controls button:hover {
    background: #fff;
}

.bika-map-controls button:active {
    background: #e0e0e0;
}

/* Tooltip */
.bika-tooltip {
    position: fixed;
    z-index: 200;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    max-width: 320px;
    width: max-content;
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    direction: rtl;
    text-align: right;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s;
}

.bika-tooltip.visible {
    opacity: 1;
}

.bika-tooltip-title {
    margin: 0 0 6px 0;
    font-size: 17px;
    color: #2c3e50;
    font-weight: bold;
}

.bika-tooltip-info {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #555;
}
