.store-locator-c2f3a6fc {
    display: flex;
    flex-direction: row;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    height: 550px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.store-locator-c2f3a6fc .sl-sidebar {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e5e7eb;
    background: #f9fafb;
    height: 100%;
}

.store-locator-c2f3a6fc .sl-search-box {
    padding: 16px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.store-locator-c2f3a6fc .sl-search-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background: #ffffff;
    outline: none;
    transition: all 0.2s ease;
}

.store-locator-c2f3a6fc .sl-list-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 8px;
}

.store-locator-c2f3a6fc .sl-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-left: 4px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.store-locator-c2f3a6fc .sl-item:hover {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.store-locator-c2f3a6fc .sl-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.store-locator-c2f3a6fc .sl-item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-locator-c2f3a6fc .sl-item-name {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 600;
}

.store-locator-c2f3a6fc .sl-item-address {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}

.store-locator-c2f3a6fc .sl-map-container {
    flex-grow: 1;
    height: 100%;
    position: relative;
}

.store-locator-c2f3a6fc .sl-map-element {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.store-locator-c2f3a6fc .sl-no-results,
.store-locator-c2f3a6fc .sl-no-search-results {
    padding: 24px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Custom leaflet popup layout styling */
.store-locator-c2f3a6fc-popup {
    text-align: left;
    font-family: inherit;
    max-width: 200px;
}
.store-locator-c2f3a6fc-popup img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
    display: block;
}
.store-locator-c2f3a6fc-popup h5 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: bold;
    color: #111827;
}
.store-locator-c2f3a6fc-popup p {
    margin: 0;
    font-size: 11px;
    line-height: 1.3;
    color: #4b5563;
}

@media (max-width: 767px) {
    .store-locator-c2f3a6fc {
        flex-direction: column;
        height: auto;
    }
    .store-locator-c2f3a6fc .sl-sidebar {
        width: 100%;
        height: 300px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    .store-locator-c2f3a6fc .sl-map-container {
        height: 350px;
    }
}
