/* Lumans — styles partagés : autocomplétion d'adresse + drapeau téléphone
   (chargé sur checkout + espace compte). Doublonne volontairement les règles
   de checkout.css : mêmes sélecteurs, mêmes valeurs, aucune collision. */
.lumans-places-dropdown {
    position: absolute;
    background: #fff;
    border: 1px solid #e5e0d8;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 60;
    display: none;
    overflow: hidden;
}
.lumans-places-item {
    padding: 11px 14px;
    font-size: 12px;
    cursor: pointer;
}
.lumans-places-item:hover { background: #f7f3ec; }
.lumans-phone-flag {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: transparent;
    border: none;
    border-right: 1px solid #e5e0d8;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    z-index: 2;
}
.lumans-phone-flag__dial { font-size: 12px; color: #6b6259; }
.lumans-phone-flag__caret { font-size: 9px; color: #9a9088; }
.lumans-phone-dd {
    position: absolute;
    background: #fff;
    border: 1px solid #e5e0d8;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 60;
    overflow: hidden;
}
.lumans-phone-dd__search {
    width: 100%;
    border: none;
    border-bottom: 1px solid #eee7dc;
    padding: 10px 12px;
    font-size: 12px;
    outline: none;
}
.lumans-phone-dd__list { max-height: 240px; overflow: auto; }
.lumans-phone-dd__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
}
.lumans-phone-dd__item:hover { background: #f7f3ec; }
.lumans-phone-dd__name { flex: 1; }
.lumans-phone-dd__dial { color: #9a9088; }
.lumans-field-error { display: block; color: #b53737; font-size: 0.78rem; margin-top: 4px; }
