.store-locator-page {
    --store-locator-height: clamp(540px, 64vh, 640px);
    --store-locator-border: rgba(15, 23, 42, .09);
    --store-locator-muted: #6b7280;
}

.store-locator-shell {
    height: var(--store-locator-height);
    max-height: var(--store-locator-height);
    min-height: 0;
    border-color: var(--store-locator-border) !important;
}

.store-locator-shell > .row,
.store-locator-shell > .row > [class*="col-"] {
    height: 100%;
    min-height: 0;
}

.store-locator-map-wrap,
.store-locator-map {
    width: 100%;
    height: 100%;
    min-height: 0;
}

.store-locator-map {
    position: relative;
}

.store-locator-panel {
    height: 100%;
    max-height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.store-locator-panel > .border-bottom {
    flex: 0 0 auto;
}

.store-locator-list {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.store-locator-list::-webkit-scrollbar {
    width: 8px;
}

.store-locator-list::-webkit-scrollbar-track {
    background: transparent;
}

.store-locator-list::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, .18);
    border-radius: 999px;
}

.store-locator-card {
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.store-locator-card:hover {
    background: #fafafa;
}

.store-locator-card.active {
    background: #f5f5f5;
    box-shadow: inset 4px 0 0 #212529;
}

.store-locator-card h3 {
    font-size: .9rem;
    line-height: 1.2;
}

.store-locator-card p {
    font-size: .78rem;
    line-height: 1.25;
}

.store-locator-pin {
    width: 30px;
    height: 30px;
    font-size: 12px;
}

.letter-spacing-tight {
    letter-spacing: -.04em;
}

.min-w-0 {
    min-width: 0;
}

@media (min-width: 1400px) {
    .store-locator-page {
        --store-locator-height: 640px;
    }
}

@media (max-width: 1199.98px) {
    .store-locator-shell {
        height: auto;
        max-height: none;
    }

    .store-locator-shell > .row,
    .store-locator-shell > .row > [class*="col-"] {
        height: auto;
    }

    .store-locator-map-wrap,
    .store-locator-map {
        height: 420px;
        min-height: 420px;
    }

    .store-locator-panel {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .store-locator-list {
        height: auto;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 767.98px) {
    .store-locator-page {
        --store-locator-height: auto;
    }

    .store-locator-map-wrap,
    .store-locator-map {
        height: 360px;
        min-height: 360px;
    }
}
