/* 3K Home Store Locator
 * Brand: teal/dark + cream highlights
 */
.threek-locator {
  --3k-teal: #0a4d4a;
  --3k-teal-light: #0e6663;
  --3k-cream: #f5e9d4;
  --3k-cream-soft: #faf4e7;
  --3k-text: #1d2a2a;
  --3k-muted: #5b6a6a;
  --3k-border: #e3ddd0;
  --3k-accent: #c89947;

  font-family: inherit;
  color: var(--3k-text);
  background: var(--3k-cream-soft);
  padding: 32px;
  border-radius: 12px;
  margin: 24px 0;
}

.threek-locator__header { text-align: center; margin-bottom: 24px; }
.threek-locator__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--3k-teal);
  margin: 0 0 8px;
}
.threek-locator__subtitle {
  color: var(--3k-muted);
  font-size: 15px;
  margin: 0;
}

.threek-locator__controls {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.threek-locator__filter,
.threek-locator__search {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 220px;
}
.threek-locator__filter label,
.threek-locator__search label {
  font-size: 13px;
  font-weight: 600;
  color: var(--3k-teal);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.threek-locator__select,
.threek-locator__input {
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--3k-border);
  border-radius: 8px;
  background: #fff;
  color: var(--3k-text);
  font-size: 15px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.threek-locator__select:focus,
.threek-locator__input:focus {
  border-color: var(--3k-teal);
  box-shadow: 0 0 0 3px rgba(10,77,74,.12);
}

.threek-locator__body {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .threek-locator__body { grid-template-columns: 1fr; }
  .threek-locator { padding: 20px; }
}

.threek-locator__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 640px;
  overflow-y: auto;
  padding-right: 6px;
}
.threek-locator__list::-webkit-scrollbar { width: 6px; }
.threek-locator__list::-webkit-scrollbar-thumb { background: var(--3k-border); border-radius: 3px; }

.threek-store {
  background: #fff;
  border: 1px solid var(--3k-border);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.threek-store:hover {
  border-color: var(--3k-teal-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10,77,74,.08);
}
.threek-store[data-active="1"] {
  border-color: var(--3k-teal);
  background: var(--3k-cream);
  box-shadow: 0 6px 18px rgba(10,77,74,.15);
}

.threek-store__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.threek-store__name {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--3k-teal);
  line-height: 1.3;
}
.threek-store__region {
  font-size: 11px;
  background: var(--3k-teal);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.threek-store__meta {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.threek-store__meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--3k-text);
  margin-bottom: 6px;
  line-height: 1.45;
}
.threek-store__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--3k-teal-light);
  flex-shrink: 0;
}
.threek-store__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.threek-store__meta a {
  color: var(--3k-text);
  text-decoration: none;
}
.threek-store__meta a:hover { color: var(--3k-teal); }

.threek-store__cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--3k-accent);
  text-decoration: none;
  margin-top: 6px;
}
.threek-store__cta:hover { color: var(--3k-teal); }

.threek-locator__map {
  background: #fff;
  border: 1px solid var(--3k-border);
  border-radius: 10px;
  overflow: hidden;
  min-height: 640px;
}
.threek-locator__map iframe { display: block; width: 100%; height: 640px; }

.threek-locator__empty {
  text-align: center;
  padding: 40px 16px;
  color: var(--3k-muted);
  background: #fff;
  border: 1px dashed var(--3k-border);
  border-radius: 10px;
}
