.lu-locator {
    --lu-blue: #0757b8;
    --lu-blue-dark: #00479b;
    --lu-green: #39e935;
    --lu-text: #1d2b3a;
    --lu-muted: #687588;
    --lu-border: #e4edf7;
    --lu-bg: #f3f8ff;
    width: 100%;
    color: var(--lu-text);
    font-family: inherit;
}

.lu-locator--with-map {
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: 20px;
    align-items: stretch;
    background: var(--lu-bg);
    border-radius: 8px;
    padding: 12px;
}

.lu-side-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lu-locator--search-only {
    width: 100%;
    max-width: none;
}

.lu-search-panel,
.lu-results-panel,
.lu-map-panel {
    background: #ffffff;
    border: 1px solid var(--lu-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.11);
}

.lu-search-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 10px;
}

.lu-results-panel {
    padding: 12px 14px 0;
}

.lu-search-form {
    position: relative;
    display: flex;
    margin-bottom: 0;
}

.lu-search-form input {
    width: 100%;
    min-height: 48px;
    padding: 12px 48px 12px 16px;
    border: 1px solid var(--lu-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--lu-text);
    font-size: 15px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lu-search-form input:focus {
    border-color: var(--lu-blue);
    box-shadow: 0 0 0 3px rgba(7, 87, 184, 0.12);
}

.lu-search-button {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #edf4ff;
    color: var(--lu-blue);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.lu-search-button .lu-search-svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.lu-search-button:hover {
    background: var(--lu-blue);
    color: #ffffff;
}

.lu-search-message {
    min-height: 18px;
    color: var(--lu-muted);
    font-size: 13px;
    line-height: 1.35;
}

.lu-search-message p {
    margin: 0 0 8px;
}

.lu-error {
    color: #b00020;
    font-weight: 700;
}

.lu-results {
    display: grid;
    gap: 0;
}

.lu-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 76px;
    padding: 13px 0;
    border-top: 1px solid var(--lu-border);
    background: #ffffff;
}

.lu-card:first-child {
    border-top: 0;
}

.lu-card h4 {
    margin: 0 0 3px;
    color: var(--lu-blue);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
}

.lu-card p {
    margin: 0;
    line-height: 1.3;
}

.lu-address {
    color: var(--lu-muted);
    font-size: 13px;
}

.lu-distance {
    color: #118000;
    font-size: 13px;
    font-weight: 700;
}

.lu-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lu-icon-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--lu-blue);
    text-decoration: none;
    overflow: hidden;
    font-size: 22px;
}

.lu-icon-action svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

.lu-icon-action .lu-whatsapp-svg {
    width: 21px;
    height: 24px;
}

.lu-icon-route:before,
.lu-icon-route:after,
.lu-icon-whatsapp:before,
.lu-icon-whatsapp:after {
    content: none !important;
}

.lu-icon-action:hover {
    background: var(--lu-blue);
    color: #ffffff;
}

.lu-card-button {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 13px;
    border-radius: 8px;
    background: var(--lu-blue);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.lu-card-button:hover {
    background: var(--lu-blue-dark);
    color: #ffffff;
}

.lu-map-panel {
    min-height: 320px;
    overflow: hidden;
}

.lu-map {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: #e7eef7;
}

.lu-info-window {
    max-width: 260px;
    color: var(--lu-text);
}

.lu-info-window strong {
    color: var(--lu-blue);
    display: block;
    margin-bottom: 6px;
}

.lu-info-window p {
    margin: 4px 0;
}

.lu-admin-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.lu-admin-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 18px;
}

.lu-admin-card strong {
    display: block;
    margin-bottom: 8px;
}

.lu-admin-card span {
    font-size: 28px;
    font-weight: 700;
}

.lu-progress {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 18px;
    margin-top: 16px;
    max-width: 800px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .lu-locator--with-map {
        grid-template-columns: 1fr;
    }

    .lu-map-panel,
    .lu-map {
        min-height: 360px;
    }

    .lu-admin-cards {
        grid-template-columns: 1fr;
    }
}
