/* ════════════════════════════════════════════════════════════════════
   LECISELÉ — lc-address : liste d'autocomplétion d'adresse (BAN)
   Dropdown unique, thème sombre signature. Positionné en fixed (collé
   sous le champ via JS) → jamais rogné par un overflow parent.
   ════════════════════════════════════════════════════════════════════ */
.lc-ac-list {
  position: fixed;
  z-index: 100000;
  margin: 0;
  padding: 6px;
  list-style: none;
  max-height: 300px;
  overflow-y: auto;
  background: #14110d;
  border: 1px solid rgba(198, 166, 100, .35);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .55);
  font-family: inherit;
  -webkit-overflow-scrolling: touch;
}

.lc-ac-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: #ece6da;
  font-size: .92rem;
  line-height: 1.3;
}

.lc-ac-item small {
  color: #9a8f78;
  font-size: .78rem;
}

.lc-ac-item.active,
.lc-ac-item:hover {
  background: rgba(198, 166, 100, .16);
}

.lc-ac-item.active small,
.lc-ac-item:hover small {
  color: #c6a664;
}
