.imta-store-locator {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin: 20px 0;
    font-family: inherit;
}

.imta-store-left {
    width: 35%;
    max-width: 430px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 16px;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 600px;
}

.imta-store-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.imta-store-filters select,
.imta-store-filters input {
    flex: 1 1 100%;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
}

.imta-store-filters button {
    padding: 6px 12px;
    border-radius: 3px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
}

.imta-store-list {
    margin-top: 10px;
}

.imta-store-item {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e2e2e2;
    padding: 10px 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.imta-store-item.is-active {
    border-color: #007bff;
    box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.2);
    background: #f0f6ff;
}

.imta-store-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.imta-store-address,
.imta-store-phone {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.imta-store-direction {
    margin-top: 6px;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 3px;
    border: none;
    background: #ffb300;
    color: #000;
    cursor: pointer;
}

.imta-store-right {
    flex: 1;
    min-width: 0;
}

.imta-store-map {
    width: 100%;
    min-height: 520px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* popup */
.imta-store-info-window {
    font-size: 13px;
}

/* responsive */
@media (max-width: 768px) {
    .imta-store-locator {
        flex-direction: column;
    }

    .imta-store-left {
        width: 100%;
        max-width: 100%;
        max-height: none;
    }

    .imta-store-map {
        min-height: 400px;
    }
}
