/* ----------------------------------------------------------
   MAP CONTAINER
---------------------------------------------------------- */
#store-locator-map {
    width: 100%;
    height: 600px;
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    #store-locator-map {
        display: none;
    }
}

/* ----------------------------------------------------------
   AGENCE LISTE
---------------------------------------------------------- */
#store-locator-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ----------------------------------------------------------
   AGENCE CARD STYLE
---------------------------------------------------------- */
.card.store-item {
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 8px -1px rgba(0, 0, 0, .08);
}

.card.store-item .card-header {
    background-color: #f0f4fa;
    transition: background-color 0.3s ease;
}

.card.store-item .card-header > * {
    color: #203659;
    text-align: center;
}

.card.store-item .card-body p {
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.card.store-item .card-body button {
    font-size: 12px !important;
}

/* État actif (agence sélectionnée) */
.card.store-item.active .card-header {
    background-color: #203659;
}

.card.store-item.active .card-header > * {
    color: #fff;
}

.card.store-item {
    padding:0!important;
}

/* ----------------------------------------------------------
   INFO WINDOW Google Maps + search input
---------------------------------------------------------- */
.gm-style-iw button.gm-ui-hover-effect, #store-location-search-gouv {
    outline: 0 !important;
    box-shadow: none !important;
}

/* ----------------------------------------------------------
   SUGGESTIONS AUTOCOMPLETE (ville/département)
---------------------------------------------------------- */
#store-location-suggestions,
#suggestions-list {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#store-location-suggestions li,
#suggestions-list li {
    padding: 8px 12px;
    cursor: pointer;
}

#store-location-suggestions li:hover,
#suggestions-list li:hover {
    background-color: #f2f2f2;
}

/* ----------------------------------------------------------
   TOAST (message d’alerte/recherche)
---------------------------------------------------------- */
#store-toast {
    transition: opacity 0.3s ease;
}

/* ----------------------------------------------------------
   LISTE DES AGENCES
---------------------------------------------------------- */
.store-simple-list ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.store-simple-list ul li a {
    font-weight: 800;
    color: #213559;
    text-decoration: none;
}

.store-simple-list ul li a:hover {
    text-decoration: underline;
}



