/* ==========================================================================
   WP Store Locator — Stylesheet
   ========================================================================== */

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
    --wsl-primary:     #2563eb;
    --wsl-primary-dk:  #1d4ed8;
    --wsl-open:        #16a34a;
    --wsl-closed:      #dc2626;
    --wsl-gray-50:     #f9fafb;
    --wsl-gray-100:    #f3f4f6;
    --wsl-gray-200:    #e5e7eb;
    --wsl-gray-500:    #6b7280;
    --wsl-gray-700:    #374151;
    --wsl-gray-900:    #111827;
    --wsl-radius:      6px;
    --wsl-shadow:      0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
    --wsl-shadow-lg:   0 4px 16px rgba(0,0,0,.12);
    --wsl-transition:  0.18s ease;
    --wsl-card-pad:    24px;
}

/* ── Reset de base ────────────────────────────────────────────────────────── */
.wsl-locator *,
.wsl-single *,
.wsl-card * {
    box-sizing: border-box;
}

/* ==========================================================================
   STORE LOCATOR
   ========================================================================== */

.wsl-locator {
    font-family: inherit;
    color: var(--wsl-gray-900);
}

/* ── Toolbar (recherche + filtres) ───────────────────────────────────────── */
.wsl-locator__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 14px;
    background: var(--wsl-gray-50);
    border: 1px solid var(--wsl-gray-200);
    border-radius: var(--wsl-radius) var(--wsl-radius) 0 0;
}

.wsl-locator__search-wrap {
    display: flex;
    flex: 1 1 220px;
    min-width: 200px;
    align-items: center;
    gap: 6px;
}

/* Conteneur de l'autocomplete */
.wsl-locator__autocomplete-wrap {
    flex: 1;
    min-width: 0;
}

/* Input injecté par JS (google.maps.places.Autocomplete) */
.wsl-locator__search-input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--wsl-gray-200);
    border-radius: var(--wsl-radius);
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    outline: none;
    transition: border-color var(--wsl-transition);
}
.wsl-locator__search-input:focus {
    border-color: var(--wsl-primary);
    box-shadow: 0 0 0 2px rgba(37,99,235,.15);
}

/* Dropdown de suggestions Google Places.
   Injecté par l'API directement dans <body>, donc HORS de .wsl-locator :
   il faut un sélecteur global. Sans z-index élevé, le menu passe derrière
   les headers sticky du thème ou derrière la carte sur mobile. */
.pac-container {
    z-index: 100000;
    border-radius: var(--wsl-radius);
    box-shadow: var(--wsl-shadow-lg);
    font-family: inherit;
    margin-top: 2px;
}
.pac-item {
    padding: 6px 10px;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.wsl-locator__geolocate {
    flex-shrink: 0;
    background: none;
    border: 1px solid var(--wsl-gray-200);
    border-radius: var(--wsl-radius);
    cursor: pointer;
    color: var(--wsl-primary);
    padding: 8px;
    display: flex;
    align-items: center;
    height: 40px;
    transition: background var(--wsl-transition), color var(--wsl-transition);
}
.wsl-locator__geolocate:hover { background: var(--wsl-gray-50); color: var(--wsl-primary-dk); }
.wsl-locator__geolocate--loading { opacity: .5; pointer-events: none; animation: wsl-spin 1s linear infinite; }

.wsl-locator__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.wsl-locator__filter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--wsl-gray-700);
    white-space: nowrap;
}

.wsl-locator__select {
    height: 36px;
    padding: 0 8px;
    border: 1px solid var(--wsl-gray-200);
    border-radius: var(--wsl-radius);
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}

.wsl-locator__filter-label--checkbox {
    cursor: pointer;
    gap: 6px;
}
.wsl-locator__filter-label--checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--wsl-primary);
    cursor: pointer;
}

/* ── Corps ────────────────────────────────────────────────────────────────── */
.wsl-locator__body {
    display: flex;
    align-items: stretch; /* les deux colonnes s'étirent à la même hauteur */
    overflow: hidden;     /* contient les enfants dans la hauteur fixée inline */
}

/* ── Carte ────────────────────────────────────────────────────────────────── */
.wsl-locator__map-wrap {
    flex: 1 1 0;
    position: relative;
    border: 1px solid var(--wsl-gray-200);
    border-top: none;
    /* La hauteur vient du parent (.wsl-locator__body) via align-items:stretch */
    min-height: 0; /* évite que flex-child ignore overflow */
}

/* Liste à droite (par défaut HTML) : on retire la bordure droite de la carte */
.wsl-locator__body--with-list.wsl-locator__body--list-right .wsl-locator__map-wrap {
    border-right: none;
}

/* Liste à gauche : la liste est réordonnée avant la carte via order */
.wsl-locator__body--list-left .wsl-locator__list-wrap {
    order: -1;
}
/* Avec liste à gauche : on retire la bordure gauche de la carte (partagée avec la liste) */
.wsl-locator__body--with-list.wsl-locator__body--list-left .wsl-locator__map-wrap {
    border-left: none;
}

.wsl-locator__map {
    width: 100%;
    height: 100%;
}

.wsl-locator__loading {
    /* display:none par défaut — ne pas utiliser l'attribut hidden
       car display:flex ci-dessous l'écrase dans Firefox/Safari */
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.65);
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.wsl-locator__loading--visible {
    display: flex;
}

/* ── Liste ────────────────────────────────────────────────────────────────── */
.wsl-locator__list-wrap {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--wsl-gray-200);
    border-top: none;
    background: #fff;
    overflow: hidden;
    min-height: 0; /* évite que flex-child ignore overflow */
}

.wsl-locator__count {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--wsl-gray-500);
    border-bottom: 1px solid var(--wsl-gray-200);
    flex-shrink: 0;
}

.wsl-locator__list {
    flex: 1 1 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    min-height: 0; /* requis pour que overflow-y:auto fonctionne dans un flex-child */
}

.wsl-locator__hint,
.wsl-locator__no-results {
    padding: 20px;
    color: var(--wsl-gray-500);
    font-size: 14px;
    text-align: center;
}

/* ── Item de liste ────────────────────────────────────────────────────────── */
.wsl-list-item {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--wsl-gray-100);
    cursor: pointer;
    transition: background var(--wsl-transition);
}
.wsl-list-item:hover { background: var(--wsl-gray-50); }
.wsl-list-item--active { background: #eff6ff; border-left: 3px solid var(--wsl-primary); }

.wsl-list-item__thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.wsl-list-item__body { flex: 1; min-width: 0; }

.wsl-list-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 4px;
}

.wsl-list-item__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--wsl-gray-900);
    line-height: 1.3;
}

.wsl-list-item__distance {
    font-size: 12px;
    color: var(--wsl-gray-500);
    white-space: nowrap;
    flex-shrink: 0;
}

.wsl-list-item__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 3px;
}

.wsl-list-item__rating { font-size: 12px; margin-bottom: 4px; }
.wsl-list-item__address,
.wsl-list-item__phone {
    font-size: 12px;
    color: var(--wsl-gray-500);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wsl-list-item__phone a { color: var(--wsl-primary); text-decoration: none; }

.wsl-list-item__services {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 4px 0 2px;
}

.wsl-list-item__actions { margin-top: 6px; }

/* ── InfoWindow ───────────────────────────────────────────────────────────── */
.wsl-infowindow {
    min-width: 240px;
    max-width: 300px;
    padding: 2px 0;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.5;
}

/* padding-right pour dégager le bouton × de Google Maps */
.wsl-infowindow__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
    padding-right: 26px;
    display: block;
}
.wsl-infowindow__title a { color: var(--wsl-gray-900); text-decoration: none; }
.wsl-infowindow__title a:hover { color: var(--wsl-primary); }

.wsl-infowindow__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 6px;
}
/* neutralise la réduction native de <small> dans la modale */
.wsl-infowindow small {
    font-size: 13px;
    color: var(--wsl-gray-500);
}

.wsl-infowindow__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
    font-size: 13px;
}

.wsl-infowindow__address { font-size: 13px; color: var(--wsl-gray-500); margin: 0 0 6px; }
.wsl-infowindow__services { display: flex; flex-wrap: wrap; gap: 4px; margin: 6px 0 4px; }
.wsl-infowindow__actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }

/* ==========================================================================
   BADGES + ÉTOILES (partagés)
   ========================================================================== */

.wsl-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.6;
}
.wsl-badge--open  { background: #dcfce7; color: var(--wsl-open); }
.wsl-badge--closed{ background: #fee2e2; color: var(--wsl-closed); }

.wsl-stars { display: inline-flex; gap: 1px; line-height: 1; }
.wsl-star { font-size: 14px; }
.wsl-star--full  { color: #f59e0b; }
.wsl-star--half  { color: #f59e0b; opacity: .6; }
.wsl-star--empty { color: #d1d5db; }

/* ==========================================================================
   BOUTONS
   ========================================================================== */

.wsl-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--wsl-primary);
    color: #fff !important;
    border-radius: var(--wsl-radius);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background var(--wsl-transition);
    white-space: nowrap;
}
.wsl-btn:hover { background: var(--wsl-primary-dk); }

.wsl-btn--secondary {
    background: #fff;
    color: var(--wsl-primary) !important;
    border: 1px solid var(--wsl-primary);
}
.wsl-btn--secondary:hover { background: var(--wsl-gray-50); }

/* ==========================================================================
   PAGE MAGASIN INDIVIDUELLE
   ========================================================================== */

.wsl-single { max-width: 1080px; margin: 0 auto; padding: 0 16px 48px; }

/* ── En-tête ──────────────────────────────────────────────────────────────── */
.wsl-single__hero { position: relative; margin-bottom: 20px; border-radius: var(--wsl-radius); overflow: hidden; max-height: 340px; }
.wsl-single__hero-img { width: 100%; height: 340px; object-fit: cover; display: block; }

.wsl-single__header-content { margin-bottom: 24px; }
.wsl-single__title { font-size: clamp(22px, 4vw, 32px); margin: 0 0 10px; }

.wsl-single__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
.wsl-single__today-hours { font-size: 13px; color: var(--wsl-gray-500); }
.wsl-single__rating { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.wsl-single__address { font-size: 15px; color: var(--wsl-gray-700); margin: 0; }

/* ── Corps ────────────────────────────────────────────────────────────────── */
.wsl-single__body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.wsl-single__block {
    margin-bottom: 28px;
}
.wsl-single__block h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--wsl-gray-200);
    color: var(--wsl-gray-700);
}

/* Mini-carte */
.wsl-single__mini-map {
    height: 200px;
    border-radius: var(--wsl-radius);
    overflow: hidden;
    border: 1px solid var(--wsl-gray-200);
}

/* Services */
.wsl-single__services { display: flex; flex-wrap: wrap; gap: 6px; }
.wsl-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--wsl-gray-100);
    border-radius: 20px;
    font-size: 12px;
    color: var(--wsl-gray-700);
}

/* Contact */
.wsl-single__contact { display: flex; flex-wrap: wrap; gap: 10px; }
.wsl-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--wsl-gray-100);
    color: var(--wsl-gray-900) !important;
    border-radius: var(--wsl-radius);
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: background var(--wsl-transition);
}
.wsl-contact-btn:hover { background: var(--wsl-gray-200); }
.wsl-contact-btn--primary { background: var(--wsl-primary); color: #fff !important; }
.wsl-contact-btn--primary:hover { background: var(--wsl-primary-dk); }

/* ── Horaires ─────────────────────────────────────────────────────────────── */
.wsl-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    border-radius: var(--wsl-radius);
    overflow: hidden;
    border: 1px solid var(--wsl-gray-200);
}
.wsl-hours-table tr {
    border-bottom: 1px solid var(--wsl-gray-100);
    transition: background var(--wsl-transition);
}
.wsl-hours-table tr:last-child { border-bottom: none; }
.wsl-hours-table tr:nth-child(even) { background: var(--wsl-gray-50); }
.wsl-hours-table td { padding: 8px 12px; vertical-align: middle; }

.wsl-hours-day {
    width: 100px;
    color: var(--wsl-gray-500);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.wsl-hours-slot { color: var(--wsl-gray-900); font-size: 13px; }

/* Ligne du jour en cours */
.wsl-hours-today { background: rgba(37,99,235,.07) !important; }
.wsl-hours-today .wsl-hours-day {
    color: var(--wsl-primary);
    font-weight: 700;
}
.wsl-hours-today .wsl-hours-slot { font-weight: 600; }

.wsl-closed { color: var(--wsl-closed); font-style: italic; font-size: 12px; }

/* ── Avis ─────────────────────────────────────────────────────────────────── */
.wsl-reviews-grid { display: grid; gap: 14px; }

.wsl-review {
    padding: 14px 16px;
    background: var(--wsl-gray-50);
    border-radius: var(--wsl-radius);
    border: 1px solid var(--wsl-gray-200);
}

.wsl-review__header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.wsl-review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--wsl-gray-200);
}
.wsl-review__avatar--initials {
    background: var(--wsl-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.wsl-review__author { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.wsl-review__rating { margin-bottom: 2px; }
.wsl-review__date { color: var(--wsl-gray-500); font-size: 12px; }

.wsl-review__text { font-size: 13px; line-height: 1.6; color: var(--wsl-gray-700); margin: 0; }

/* ==========================================================================
   CARTE D'UN MAGASIN (shortcode [store_card])
   ========================================================================== */

.wsl-card {
    border: 1px solid var(--wsl-gray-200);
    border-radius: var(--wsl-radius);
    overflow: hidden;
    box-shadow: var(--wsl-shadow);
    max-width: 380px;
    background: #fff;
}
.wsl-card--embed { display: flex; flex-direction: column; }

.wsl-card__photo {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.wsl-card__body { padding: 14px 16px; }
.wsl-card__title { font-size: 16px; margin: 0 0 8px; }
.wsl-card__title a { color: var(--wsl-gray-900); text-decoration: none; }
.wsl-card__title a:hover { color: var(--wsl-primary); }

.wsl-card__today-hours { font-size: 12px; color: var(--wsl-gray-500); margin-left: 6px; }

.wsl-card__address, .wsl-card__phone {
    font-size: 13px;
    color: var(--wsl-gray-500);
    margin: 6px 0 0;
}
.wsl-card__phone a { color: var(--wsl-primary); text-decoration: none; }
.wsl-card__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

/* ==========================================================================
   LAYOUT : COMPACT
   1 colonne centrée, max-width 640 px
   ========================================================================== */

.wsl-single--compact {
    max-width: 640px;
    margin-inline: auto;
}
.wsl-single--compact .wsl-single__hero { height: 220px; }
.wsl-single--compact .wsl-single__hero-img { height: 220px; }

.wsl-single__compact-body {
    padding: 24px var(--wsl-card-pad);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wsl-single--compact .wsl-single__title { font-size: 1.5rem; }
.wsl-single--compact .wsl-single__mini-map { height: 200px; }

/* ==========================================================================
   LAYOUT : PLEINE LARGEUR
   Hero grand format + header synthétique + grille de blocs
   ========================================================================== */

.wsl-single--fullwidth .wsl-single__hero { height: 360px; }
.wsl-single--fullwidth .wsl-single__hero-img { height: 360px; }

.wsl-single__fw-header {
    padding: 28px var(--wsl-card-pad);
    background: var(--wsl-gray-50);
    border-bottom: 1px solid var(--wsl-gray-200);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}
.wsl-single__fw-header .wsl-single__title {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 4px;
}
.wsl-single__fw-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    width: 100%;
}
.wsl-single__fw-header .wsl-single__contact {
    width: 100%;
    margin-top: 4px;
    border: none;
    padding: 0;
}

.wsl-single__fw-body {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 280px, 1fr ) );
}
.wsl-single__fw-body > .wsl-single__block {
    border-right: 1px solid var(--wsl-gray-200);
    border-bottom: 1px solid var(--wsl-gray-200);
    padding: 24px;
}
.wsl-single--fullwidth .wsl-single__reviews {
    grid-column: 1 / -1;
}
.wsl-single--fullwidth .wsl-single__content {
    grid-column: 1 / -1;
}
.wsl-single--fullwidth .wsl-single__mini-map { height: 260px; }

/* ==========================================================================
   STORE CARD : tags de services
   ========================================================================== */

.wsl-card__services {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 8px 0 0;
}

/* ==========================================================================
   NOTICES + TABLEAU DE BORD MANAGER
   ========================================================================== */

.wsl-notice {
    padding: 12px 16px;
    border-radius: var(--wsl-radius);
    margin-bottom: 16px;
    font-size: 14px;
}
.wsl-notice--success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.wsl-notice--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.wsl-manager-dashboard h2 { margin-top: 0; }

.wsl-manager-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.wsl-manager-table th,
.wsl-manager-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--wsl-gray-200);
}
.wsl-manager-table th { background: var(--wsl-gray-50); font-weight: 600; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes wsl-spin {
    to { transform: rotate(360deg); }
}

.wsl-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--wsl-gray-200);
    border-top-color: var(--wsl-primary);
    border-radius: 50%;
    animation: wsl-spin .8s linear infinite;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ── Tablette / conteneur étroit : on réduit la liste avant d'empiler ───── */
@media (max-width: 1024px) {
    .wsl-locator__list-wrap { width: 280px; }
}

@media (max-width: 768px) {

    /* ── Store Locator : toolbar ────────────────────────────── */

    .wsl-locator__toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px;
    }
    .wsl-locator__search-wrap { width: 100%; flex: 1 1 auto; }
    /* iOS : empêche le zoom automatique sur les inputs < 16 px */
    .wsl-locator__search-input { font-size: 16px; }

    .wsl-locator__filters { flex-wrap: wrap; gap: 8px; width: 100%; }
    .wsl-locator__filter-label { flex: 1 1 auto; }

    /* ── Store Locator : corps (carte + liste) ──────────────── */

    .wsl-locator__body {
        flex-direction: column;
        height: auto !important;
    }
    /* Carte : hauteur fluide relative au viewport (au lieu d'un px figé qui
       paraît minuscule sur grand téléphone), bornée pour rester utilisable. */
    .wsl-locator__map-wrap {
        width: 100%;
        height: clamp(240px, 50vh, 420px) !important;
        border: 1px solid var(--wsl-gray-200) !important;
        border-top: none !important;
        min-height: 0;
        order: 0 !important;
    }
    /* Liste : toujours sous la carte, quel que soit list_position */
    .wsl-locator__list-wrap {
        width: 100%;
        max-height: 60vh;
        order: 1 !important;
        border: 1px solid var(--wsl-gray-200) !important;
        border-top: none !important;
        flex-shrink: 0;
    }

    /* ── Page magasin individuelle ──────────────────────────── */

    .wsl-single__body         { grid-template-columns: 1fr; }
    .wsl-single__sidebar      { order: 2; }
    .wsl-single__main         { order: 1; }

    .wsl-single__fw-body      { grid-template-columns: 1fr; }
    .wsl-single__fw-header    { flex-direction: column; }
    .wsl-single--fullwidth .wsl-single__reviews,
    .wsl-single--fullwidth .wsl-single__content { grid-column: 1; }

    .wsl-single--compact      { max-width: 100%; }
}

/* ── Petit mobile : filtres pleine largeur + cibles tactiles ───────────── */
@media (max-width: 480px) {
    /* Chaque filtre occupe sa propre ligne, libellé à gauche / champ à droite */
    .wsl-locator__filter-label {
        flex: 1 1 100%;
        justify-content: space-between;
    }
    .wsl-locator__filter-label--checkbox { justify-content: flex-start; }
    .wsl-locator__select { flex: 0 1 60%; min-width: 0; }

    /* Bouton de géolocalisation : cible tactile carrée ≥ 40 px */
    .wsl-locator__geolocate { width: 44px; justify-content: center; }

    /* Adresses sur 2 lignes plutôt que tronquées (la largeur le permet) */
    .wsl-list-item__address { white-space: normal; }
}
