button {
    font-family: inherit;
}

.la-products-locator {
    --la-products-map-height: 540px;
    --la-products-surface: #eef4fa;
    --la-products-panel: #ffffff;
    --la-products-blue: #0a72b5;
    --la-products-green: #91c848;
    --la-products-green-soft: #edf7df;
    --la-products-blue-soft: #eef7ff;
    --la-products-text: #17344e;
    --la-products-muted: #73869a;
    --la-products-border: rgba(17, 44, 70, 0.08);
    --la-products-shadow: 0 14px 40px rgba(6, 47, 84, 0.08);
    background: var(--la-products-surface);
    border-radius: 24px;
    color: var(--la-products-text);
    font-family: var(--font-family-primary, var(--e-global-typography-text-font-family, 'Barlow'), sans-serif);
    padding: 40px;
}

.la-products-locator__toolbar {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.95fr) minmax(150px, 0.42fr);
    align-items: stretch;
}

.la-products-locator__search,
.la-products-locator__city-filter {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 56px;
    background: var(--la-products-panel);
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.la-products-locator__field-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    margin-left: 18px;
    color: var(--la-products-muted);
    flex: 0 0 auto;
}

.la-products-locator__field-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.la-products-locator__search-input,
.la-products-locator__city-select {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--la-products-text);
    font-size: 16px;
    line-height: 1.35;
    padding: 14px 16px 14px 12px;
}

.la-products-locator__city-select {
    appearance: none;
    cursor: pointer;
}

.la-products-locator__city-filter.is-disabled {
    opacity: 0.6;
}

.la-products-locator__city-filter.is-disabled .la-products-locator__city-select {
    cursor: not-allowed;
}

.la-products-locator__search-input:focus,
.la-products-locator__city-select:focus {
    outline: none;
}

.la-products-locator__search-input::placeholder {
    color: var(--la-products-muted);
}

.la-products-locator__city-filter::after {
    content: "";
    position: absolute;
    right: 18px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(23, 52, 78, 0.55);
    border-bottom: 2px solid rgba(23, 52, 78, 0.55);
    transform: rotate(45deg) translateY(-2px);
    pointer-events: none;
}

.la-products-locator__search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 32, 51, 0.08);
    color: var(--la-products-text);
    display: none;
    cursor: pointer;
}

.la-products-locator__search-clear.is-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.la-products-locator__search-button {
    min-height: 56px;
    border: 0;
    border-radius: 5px;
    background: var(--la-products-green);
    color: #183124;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.la-products-locator__search-button:hover,
.la-products-locator__search-button:focus-visible {
    outline: none;
    transform: translateY(-1px);
}

.la-products-locator__suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--la-products-panel);
    border-radius: 16px;
    border: 1px solid var(--la-products-border);
    box-shadow: var(--la-products-shadow);
    padding: 8px;
}

.la-products-locator__suggestion {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: transparent;
    padding: 12px 14px;
    text-align: left;
    cursor: pointer;
}

.la-products-locator__suggestion:hover,
.la-products-locator__suggestion:focus-visible {
    background: rgba(10, 114, 181, 0.08);
    outline: none;
}

.la-products-locator__suggestion-title,
.la-products-locator__suggestion-subtitle {
    display: block;
}

.la-products-locator__suggestion-title {
    color: var(--la-products-text);
    font-size: 15px;
    font-weight: 600;
}

.la-products-locator__suggestion-subtitle {
    color: var(--la-products-muted);
    font-size: 13px;
    margin-top: 4px;
}

.la-products-locator__summary {
    margin-top: 26px;
}

.la-products-locator__summary-shell {
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
    align-items: stretch;
}

.la-products-locator__summary-main,
.la-products-locator__summary-side {
    min-width: 0;
}

.la-products-locator__summary.is-instruction .la-products-locator__summary-shell {
    grid-template-columns: minmax(0, 1fr);
}

.la-products-locator__summary.is-instruction .la-products-locator__summary-side {
    display: none;
}

.la-products-locator__summary-card {
    background: var(--la-products-panel);
    border-radius: 6px;
    box-shadow: var(--la-products-shadow);
    padding: 26px 30px;
}

.la-products-locator__summary-card--instruction {
    min-height: 180px;
}

.la-products-locator__summary-side {
    display: grid;
    gap: 14px;
    align-content: center;
}

.la-products-locator__product-title {
    color: var(--la-products-blue);
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 22px;
}

.la-products-locator__product-title--instruction {
    font-size: clamp(24px, 2vw, 32px);
    margin-bottom: 14px;
}

.la-products-locator__instruction-lead {
    color: var(--la-products-text);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 14px;
}

.la-products-locator__instruction-list {
    margin: 0;
    padding-left: 20px;
    color: var(--la-products-text);
    display: grid;
    gap: 10px;
}

.la-products-locator__instruction-item {
    font-size: 14px;
    line-height: 1.55;
}

.la-products-locator__details-grid {
    display: grid;
    gap: 0;
}

.la-products-locator__detail-row {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(17, 44, 70, 0.08);
}

.la-products-locator__detail-row:last-child {
    border-bottom: 0;
}

.la-products-locator__detail-label {
    color: var(--la-products-muted);
    font-size: 13px;
    line-height: 1.35;
}

.la-products-locator__detail-value {
    color: var(--la-products-text);
    font-size: 14px;
    font-weight: 700;
}

.la-products-locator__summary-metrics {
    display: grid;
    gap: 14px;
    align-content: center;
}

.la-products-locator__metric {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 18px;
    border-radius: 6px;
}

.la-products-locator__metric--availability {
    background: var(--la-products-green-soft);
}

.la-products-locator__metric--price {
    background: var(--la-products-blue-soft);
}

.la-products-locator__metric-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    color: var(--la-products-green);
}

.la-products-locator__metric--price .la-products-locator__metric-icon {
    color: var(--la-products-blue);
}

.la-products-locator__metric-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.la-products-locator__metric-label {
    color: rgba(23, 52, 78, 0.68);
    font-size: 14px;
    line-height: 1.3;
}

.la-products-locator__metric-value {
    color: var(--la-products-blue);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 4px;
}

.la-products-locator__metric--availability .la-products-locator__metric-value {
    color: #5e9b1f;
}

.la-products-locator__metric-note {
    color: var(--la-products-muted);
    font-size: 13px;
    margin-top: 6px;
}

.la-products-locator__results-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin: 28px 0 18px;
}

.la-products-locator__results-heading {
    color: var(--la-products-text);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.la-products-locator__view-switch {
    display: inline-flex;
    border: 1px solid rgba(17, 44, 70, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.la-products-locator__view-button {
    min-width: 112px;
    border: 0;
    background: #ffffff;
    color: var(--la-products-text);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    text-transform: uppercase;
    cursor: pointer;
}

.la-products-locator__view-button.is-active {
    background: var(--la-products-blue);
    color: #ffffff;
}

.la-products-locator__content {
    display: block;
}

.la-products-locator__stage {
    position: relative;
}

.la-products-locator__map-panel {
    overflow: hidden;
    border-radius: 14px;
    background: #dceaf2;
    position: relative;
    min-height: var(--la-products-map-height);
}

.la-products-locator__list-panel {
    display: none;
    min-height: var(--la-products-map-height);
}

.la-products-locator__content.is-map-view .la-products-locator__map-panel {
    display: block;
}

.la-products-locator__content.is-map-view .la-products-locator__list-panel {
    display: none;
}

.la-products-locator__content.is-list-view .la-products-locator__map-panel {
    display: none;
}

.la-products-locator__content.is-list-view .la-products-locator__list-panel {
    display: block;
}

.la-products-locator__map,
.la-products-locator__map-fallback {
    width: 100%;
    height: 100%;
    min-height: var(--la-products-map-height);
}

.la-products-locator__map-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--la-products-muted);
    text-align: center;
    padding: 24px;
}

.la-products-locator__status {
    min-height: 24px;
    color: var(--la-products-muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.la-products-locator__results {
    display: grid;
    gap: 14px;
    min-height: var(--la-products-map-height);
}

.la-products-locator__content.is-list-view .la-products-locator__results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.la-products-locator__results::-webkit-scrollbar {
    width: 8px;
}

.la-products-locator__results::-webkit-scrollbar-thumb {
    background: rgba(17, 32, 51, 0.16);
    border-radius: 999px;
}

.la-products-locator__map-popover {
    width: min(420px, calc(100vw - 40px));
    max-width: 100%;
}

.la-products-locator__card,
.la-products-locator__empty {
    background: var(--la-products-panel);
    border-radius: 18px;
    box-shadow: 0 2px 7px 1px rgba(0, 0, 0, .1);
}

.la-products-locator__card {
    padding: 18px;
    /* border: 2px solid transparent; */
    cursor: pointer;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.la-products-locator__card--map {
    position: relative;
    width: 100%;
}

.la-products-locator__map-popover-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 44, 70, 0.08);
    color: var(--la-products-muted);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.la-products-locator__card.is-selected {
    border-color: var(--la-products-green);
}

.la-products-locator__card-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.la-products-locator__card-title {
    color: var(--la-products-blue);
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
}

.la-products-locator__card-city {
    color: var(--la-products-text);
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
}

.la-products-locator__card-address,
.la-products-locator__card-link {
    color: var(--la-products-muted);
    font-size: 15px;
    line-height: 1.45;
    margin-top: 6px;
}

.la-products-locator__card-link {
    display: inline-block;
    text-decoration: none;
}

.la-products-locator__card-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
    margin-top: 8px;
}

.la-products-locator__card-directions {
    display: inline-block;
    color: var(--la-products-blue);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 8px;
}

.la-products-locator__card-badge {
    white-space: nowrap;
    border-radius: 999px;
    background: rgba(145, 200, 72, 0.14);
    color: #5d8d28;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 12px;
}

.la-products-locator__card-badge-label {
    color: rgba(23, 52, 78, 0.72);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.la-products-locator__card-badge-value {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 2px;
}

.la-products-locator__card-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: stretch;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 44, 70, 0.08);
}

.la-products-locator__card-hours {
    display: grid;
    gap: 6px;
}

.la-products-locator__card-price {
    text-align: right;
}

.la-products-locator__card-price-label {
    color: rgba(23, 52, 78, 0.68);
    font-size: 15px;
    line-height: 1.35;
}

.la-products-locator__card-price-value {
    color: var(--la-products-blue);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 4px;
}

.la-products-locator__hours-row {
    display: flex;
    gap: 12px;
    color: var(--la-products-muted);
    font-size: 15px;
}

.la-products-locator__hours-row span:last-child {
    color: var(--la-products-text);
    font-weight: 600;
}

.la-products-locator__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    color: var(--la-products-muted);
    text-align: center;
    padding: 28px;
}

@media (max-width: 1366px) {
    .la-products-locator__content.is-list-view .la-products-locator__results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .la-products-locator {
        padding: 32px;
    }

    .la-products-locator__toolbar {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.85fr);
    }

    .la-products-locator__search-button {
        grid-column: 1 / -1;
    }

    .la-products-locator__summary-shell {
        grid-template-columns: minmax(0, 1fr);
    }


}

@media (max-width: 767px) {
    .la-products-locator {
        padding: 20px 20px 0px 20px;
        border-radius: 0px;
    }

    .la-products-locator__toolbar {
        display: flex;
        flex-flow: column;
    }

    .la-products-locator__product-title {
        font-size: 25px;
    }

    .la-products-locator__results-head {
        gap: 12px;
        flex-flow: column;
    }

    .la-products-locator__view-switch {
        width: 100%;
        max-width: 400px;
    }

    .la-products-locator__view-button {
        flex: 1 1 auto;
    }



    .la-products-locator__card-badge {
        justify-self: start;
    }

    .la-products-locator__card-price {
        text-align: left;
    }

    .la-products-locator__results {
        max-height: none;
    }

    .la-products-locator__content.is-list-view .la-products-locator__results {
        grid-template-columns: minmax(0, 1fr);
    }

    .la-products-locator__content.is-map-view .la-products-locator__stage {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .la-products-locator__content.is-map-view .la-products-locator__map-panel {
        border-radius: 0;
    }

    .la-products-locator__map-popover {
        width: min(420px, calc(100vw - 24px));
    }

    .la-products-locator__card--map {
        padding: 14px;
        border-radius: 16px;
    }

    .la-products-locator__card--map .la-products-locator__card-top,
    .la-products-locator__card--map .la-products-locator__card-bottom {
        gap: 10px;
    }

    .la-products-locator__card--map .la-products-locator__card-title {
        font-size: 16px;
        line-height: 1.2;
        padding-right: 34px;
    }
}

/* Complianz Google Maps Consent Placeholder Styles */
.la-products-locator__map-fallback {
    background-image: linear-gradient(rgba(238, 244, 250, 0.65), rgba(238, 244, 250, 0.65)), url('../map-placeholder.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.la-locator-consent-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 30px;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(6, 47, 84, 0.15);
    box-sizing: border-box;
}

.la-locator-consent-icon {
    color: var(--la-products-blue, #0a72b5);
    margin-bottom: 16px;
    opacity: 0.85;
}

.la-locator-consent-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--la-products-text, #17344e);
}

.la-locator-consent-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px;
    color: var(--la-products-muted, #73869a);
}

.la-locator-consent-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.la-locator-consent-accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    background: var(--la-products-blue, #0a72b5);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.la-locator-consent-accept-btn:hover {
    background: var(--la-products-green, #91c848);
    color: #183124;
}