.store-locator-wrapper {
  display: flex;
  flex-direction: row;
  height: 400px;
  width: 1000px;
  margin: 20px auto;
  box-sizing: border-box;
  border: none !important;
}



#store-info-panel {
  flex: 4 1 auto;
  overflow-y: auto;
  padding: 10px;
  width: 600px;
  box-sizing: border-box;
}

#store-map {
  flex: 3 1 auto;
  height: 100%;
  width: 600px;
  order: 1;
  box-sizing: border-box;
}

.custom-pin-marker svg,
.custom-circle-marker svg {
  display: block;
}

.store-entry {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  cursor: pointer;

}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  display: none;
}

#mapaDistribuidor,
#sarasa .elementor-shortcode {
  display: flex;
  justify-content: center;
}

/* ============================
   Responsive para móviles
   ============================ */
@media (max-width: 768px) {
  .store-locator-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    height: 580px;
  }

  #store-map,
  #store-info-panel {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  #store-map {
  
    order: 1;
  }

  #store-info-panel {
    max-height: 300px;
    border-top: 1px solid #ccc;
    order: 2;
  }
}

/* ============================
   Responsive para tablets
   ============================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .store-locator-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    height: auto;
  }

  #store-map,
  #store-info-panel {
    width: 90%;
    max-width: 600px;
    margin: 10px auto;
    box-sizing: border-box;
  }

  #store-map {
    height: 300px;
    order: 1;
  }

  #store-info-panel {
    max-height: 300px;
    border-top: 1px solid #ccc;
    order: 2;
  }
}