#csl-store-locator {
    display: flex;
    width: 100%;
    height: 600px;
    min-height: 600px;
    border: 1px solid #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    position: relative;
}

#csl-store-locator * {
    box-sizing: border-box;
}

.csl-sidebar {
    width: 360px;
    min-width: 280px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.csl-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.csl-search-box .csl-icon {
    font-size: 16px;
    color: #888;
}

.csl-search-box input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 6px 0;
}

.csl-autocomplete-host {
    flex: 1;
    min-width: 0;
}

.csl-autocomplete-host gmp-place-autocomplete {
    width: 100%;
    --gmpx-color-surface: transparent;
}

.csl-search-box button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    padding: 4px 6px;
    line-height: 1;
}

.csl-search-box button:hover {
    color: #14315c;
}

.csl-store-list {
    flex: 1;
    overflow-y: auto;
}

.csl-store-list .csl-placeholder {
    padding: 20px;
    color: #888;
    font-size: 14px;
}

.csl-store-item {
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.csl-store-item h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #14315c;
}

.csl-store-item p {
    margin: 4px 0;
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.csl-store-item a {
    color: #14315c;
    text-decoration: none;
}

.csl-store-item a:hover {
    text-decoration: underline;
}

.csl-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.csl-directions-btn {
    display: inline-block;
    background: #14315c;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
}

.csl-directions-btn:hover {
    background: #0d2140;
}

.csl-distance {
    font-weight: 700;
    color: #14315c;
    font-size: 13px;
}

.csl-map-wrapper {
    flex: 1;
    min-width: 200px;
    min-height: 300px;
    position: relative;
}

#csl-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

@media (max-width: 782px) {
    #csl-store-locator {
        flex-direction: column;
        height: auto;
    }
    .csl-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        max-height: 400px;
    }
    #csl-map {
        height: 400px;
    }
}
