.store-locator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.store-locator-map {
    flex: 1;
    min-width: 300px;
    height: 500px;
    border: 2px solid #007cba;
    border-radius: 5px;
}

.store-locator-sidebar {
    width: 300px;
    min-width: 250px;
}

.store-search {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.store-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
}

.store-list li {
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #fff;
}

.store-list li:hover {
    background-color: #f8f9fa;
    border-color: #007cba;
}

.store-list li.active {
    background-color: #007cba;
    color: white;
    border-color: #005a87;
}

.store-list h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
}

.store-list .store-address {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.store-list .store-phone {
    margin: 0 0 10px 0;
    color: #007cba;
    font-size: 14px;
}

.view-on-map {
    background: #007cba;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.view-on-map:hover {
    background: #005a87;
}

.store-popup {
    min-width: 200px;
}

.store-popup h3 {
    margin: 0 0 10px 0;
    color: #007cba;
    font-size: 16px;
}

.store-popup p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.osm-single-map-container {
    width: 100%;
    margin: 20px 0;
}

.osm-single-map {
    border: 2px solid #007cba;
    border-radius: 5px;
}

/* Leaflet map fixes */
.leaflet-container {
    background: #f8f9fa;
    font-family: inherit;
}

.leaflet-popup-content {
    margin: 15px;
    font-family: inherit;
}

.leaflet-marker-icon {
    margin-left: -12px !important;
    margin-top: -41px !important;
}

@media (max-width: 768px) {
    .store-locator-container {
        flex-direction: column;
    }
    
    .store-locator-sidebar {
        width: 100%;
    }
    
    .store-locator-map {
        min-width: 100%;
        height: 400px;
    }
}