.asl-wrap {
    margin: 0;
    font-family: inherit;
}

.asl-layout {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

.asl-sidebar {
    width: 320px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid #ddd;
}

.asl-search-box {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.asl-search-box input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.asl-search-box input:focus {
    border-color: #2271b1;
}

.asl-store-list {
    flex: 1;
    overflow-y: auto;
    max-height: 500px;
}

.asl-store-item {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.15s;
}

.asl-store-item:hover,
.asl-store-item.active {
    background: #f0f6fc;
}

.asl-store-item.active {
    border-left: 3px solid #2271b1;
}

.asl-store-name {
    font-weight: 700;
    font-size: 14px;
    color: #1d2327;
    margin-bottom: 4px;
}

.asl-store-address {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 4px;
}

.asl-store-phone {
    font-size: 12px;
    color: #2271b1;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.asl-store-phone a {
    color: inherit;
    text-decoration: none;
}

.asl-store-phone a:hover {
    text-decoration: underline;
}

.asl-map-wrap {
    flex: 1;
}

#asl-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.asl-no-stores {
    padding: 20px;
    color: #999;
    font-style: italic;
    text-align: center;
}

.asl-info-window {
    max-width: 220px;
    font-family: inherit;
}

.asl-info-window h4 {
    margin: 0 0 6px;
    font-size: 14px;
    color: #1d2327;
}

.asl-info-window p {
    margin: 0 0 4px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.asl-info-window a {
    color: #2271b1;
    text-decoration: none;
    font-size: 12px;
}

.asl-info-window a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .asl-layout {
        flex-direction: column;
    }

    .asl-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .asl-store-list {
        max-height: 200px;
    }

    #asl-map {
        min-height: 350px;
    }
}
