.ls-wrap {
    --ls-primary: #1d3d1a;
    --ls-primary-dark: #14290F;
    --ls-text: #1a1a1a;
    --ls-text-muted: #6b7280;
    --ls-bg: #f7f7f5;
    --ls-card-bg: #ffffff;
    --ls-card-border: #e5e7eb;
    --ls-radius: 14px;

    display: flex;
    gap: 0;
    background: var(--ls-bg);
    min-height: 600px;
    color: var(--ls-text);
    font-family: inherit;
    box-sizing: border-box;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.ls-wrap *,
.ls-wrap *:before,
.ls-wrap *:after {
    box-sizing: border-box;
}

.ls-sidebar {
    width: 400px;
    flex: 0 0 400px;
    padding: 32px 24px;
}

.ls-sidebar::-webkit-scrollbar {
    width: 8px;
}

.ls-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.ls-sidebar::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.ls-header {
    margin-bottom: 20px;
}

.ls-title {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 700;
    color: var(--ls-primary);
    line-height: 1.2;
}

.ls-subtitle {
    margin: 0;
    color: var(--ls-text-muted);
    font-size: 14px;
}

.ls-search {
    position: relative;
    margin-bottom: 20px;
}

.ls-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ls-text-muted);
    font-size: 14px;
}

.ls-search input.ls-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid var(--ls-card-border);
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    color: var(--ls-text);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    box-shadow: none !important;
    margin: 0;
}

.ls-search input.ls-search-input:focus {
    border-color: var(--ls-primary);
}

.ls-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    max-height: 450px;

    &::-webkit-scrollbar {
        width: 5px;
    }

    &::-webkit-scrollbar-track {
        background: #fff;
        border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb {
        background: #8C8C8C;
        border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb:hover {
        background: #F5F5F5;
    }
}

.ls-card {
    height: auto;
    padding: 20px;
    border-radius: var(--ls-radius);
    cursor: pointer;
    transition: all .25s ease;
    background: #ffffff50;
    outline: none;
}

.ls-card:hover {
    background: rgba(0, 0, 0, .03);
}

.ls-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(29, 61, 26, .2);
}

.ls-card.is-active {
    background: var(--ls-card-bg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    border-left: 1px solid var(--ls-primary);
}

.ls-card-title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    color: var(--ls-text);
    line-height: 1.3;
}

.ls-card-address,
.ls-card-phone,
.ls-card-hours {
    margin: 6px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--ls-text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.ls-card-address i,
.ls-card-phone i,
.ls-card-hours i {
    color: var(--ls-primary);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.ls-card:not(.is-active) .ls-card-hours,
.ls-card:not(.is-active) .ls-card-btn {
    display: none;
}

.ls-card-btn {
    display: block;
    margin-top: 16px;
    padding: 12px 20px;
    background: var(--ls-primary);
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    transition: background .15s;
}

.ls-card-btn:hover {
    background: var(--ls-primary-dark);
    color: #fff !important;
}

.ls-no-result {
    padding: 24px 16px;
    text-align: center;
    color: var(--ls-text-muted);
    font-size: 14px;
}

.ls-map {
    flex: 1;
    min-height: 600px;
    background: #e5e7eb;
}

.ls-map-frame {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
}

.ls-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: 0;
    display: block;
}

.ls-map-empty {
    padding: 40px;
    text-align: center;
    color: var(--ls-text-muted);
}

.ls-empty {
    padding: 60px 20px;
    text-align: center;
    color: var(--ls-text-muted);
    font-size: 15px;
    background: var(--ls-bg);
}

@media (max-width: 768px) {
    .ls-list {
        max-height: 300px;
    }

    .ls-wrap {
        flex-direction: column;
        min-height: 0;
    }

    .ls-sidebar {
        width: 100%;
        flex: none;
        padding: 20px 16px;
    }

    .ls-map,
    .ls-map-frame,
    .ls-map-frame iframe {
        min-height: 400px;
        height: 400px;
    }
}