/* Locator Plus — UM SPOT Dark Theme Overrides */
gmpx-store-locator {
  --gmpx-color-surface: #0a0d16;
  --gmpx-color-on-surface: #e8f1f0;
  --gmpx-color-on-surface-variant: rgba(238,241,247,0.55);
  --gmpx-color-primary: #2dd4bf;
  --gmpx-color-outline: rgba(45,212,191,0.18);
  --gmpx-fixed-panel-width-row-layout: 30em;
  --gmpx-fixed-panel-height-column-layout: 65%;
  --gmpx-font-family-base: "Inter", system-ui, sans-serif;
  --gmpx-font-family-headings: "Inter", system-ui, sans-serif;
  --gmpx-font-size-base: 0.875rem;
  --gmpx-hours-color-open: #2dd4bf;
  --gmpx-hours-color-closed: #ef4444;
  --gmpx-rating-color: #d4a853;
  --gmpx-rating-color-empty: rgba(255,255,255,0.12);
  width: 100%;
  height: 480px;
  border-radius: 16px;
  border: 1px solid rgba(45,212,191,0.15);
  overflow: hidden;
}
/* Panel arka planini koyu yap */
gmpx-store-locator::part(panel) {
  background: rgba(10,13,22,0.92);
  backdrop-filter: blur(12px);
}
/* Baslik rengini ayarla */
gmpx-store-locator::part(panel-heading) {
  color: #e8f1f0;
}
/* Arama kutusu */
gmpx-store-locator input[type="text"] {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(45,212,191,0.2) !important;
  border-radius: 8px !important;
  color: #e8f1f0 !important;
  padding: 10px 14px !important;
}
gmpx-store-locator input[type="text"]:focus {
  border-color: rgba(45,212,191,0.5) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(45,212,191,0.08) !important;
}
gmpx-store-locator input[type="text"]::placeholder {
  color: rgba(238,241,247,0.3) !important;
}
/* Responsive */
@media (max-width: 600px) {
  gmpx-store-locator {
    --gmpx-fixed-panel-width-row-layout: 100%;
    height: 400px;
    border-radius: 12px;
  }
}