/* Localizador de tiendas.
   Paleta tomada del sitio: #212121 en cabecera, #424345 en botones,
   #f4f4f4 de fondo. Se busca el mismo aire que tenía el widget anterior:
   panel de resultados a la izquierda y mapa a la derecha. */

.localizador {
    display: flex;
    gap: 0;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    overflow: hidden;
    min-height: 560px;
    text-align: left;
}

.localizador__panel {
    flex: 0 0 360px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid #e4e4e4;
    min-width: 0;
}

.localizador__mapa {
    flex: 1 1 auto;
    min-height: 560px;
    background: #f4f4f4;
    z-index: 0; /* por debajo del menú fijo del sitio */
}

/* --- búsqueda --- */

.localizador__busqueda {
    padding: 18px;
    border-bottom: 1px solid #e4e4e4;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.localizador__busqueda input[type="search"],
.localizador__busqueda select {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #d4d4d4;
    border-radius: 3px;
    font-size: 14px;
    color: #424345;
    background: #fff;
    box-sizing: border-box;
}

.localizador__busqueda input[type="search"]:focus,
.localizador__busqueda select:focus {
    outline: 2px solid #212121;
    outline-offset: 1px;
}

.localizador__ubicacion {
    height: 44px;
    border: 0;
    border-radius: 3px;
    background: #424345;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}

.localizador__ubicacion:hover:not(:disabled) { background: #212121; }
.localizador__ubicacion:disabled { opacity: .6; cursor: default; }

.localizador__conteo {
    margin: 0;
    padding: 12px 18px;
    font-size: 13px;
    color: #898a8b;
    background: #fafafa;
    border-bottom: 1px solid #e4e4e4;
}

/* --- lista de resultados --- */

.localizador__lista {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    flex: 1 1 auto;
    max-height: 460px;
}

.tienda {
    padding: 16px 18px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    margin: 0;
}

.tienda:hover, .tienda:focus { background: #fafafa; outline: none; }
.tienda:focus-visible { box-shadow: inset 3px 0 0 #212121; }

.tienda h4 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #212121;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.tienda p {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.45;
    color: #777;
}

.tienda__distancia {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 400;
    color: #898a8b;
    white-space: nowrap;
}

.tienda__hoy { color: #898a8b; font-size: 12px; }

/* --- globo del mapa --- */

.tienda__globo { min-width: 210px; }
.tienda__globo strong { display: block; margin-bottom: 6px; color: #212121; }
.tienda__globo p { margin: 0 0 6px; font-size: 13px; line-height: 1.45; }
.tienda__globo a { color: #212121; text-decoration: underline; }

.tienda__horario {
    margin: 0 0 6px;
    font-size: 12px;
    color: #777;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 10px;
}

.tienda__horario dt { font-weight: 600; }
.tienda__horario dd { margin: 0; }

/* --- móvil: el mapa arriba y la lista debajo --- */

@media (max-width: 991px) {
    .localizador { flex-direction: column; min-height: 0; }
    .localizador__panel { flex: 1 1 auto; border-right: 0; }
    .localizador__mapa { order: -1; min-height: 340px; }
    .localizador__lista { max-height: 380px; }
}
