/* ═══════════════════════════════════════════════════════════════════════
   CAMALARM CRM — T172B : CSS dropdown autocomplétion catalogue
   ═══════════════════════════════════════════════════════════════════════
   Ce fichier ajoute UNIQUEMENT le style du dropdown overlay.
   Aucune règle ne touche aux lignes de devis, à la grille ou au layout.

   Couleurs : variables CRM existantes (--crm-bl, --crm-or)
   ═══════════════════════════════════════════════════════════════════════ */

/* Le dropdown est un overlay positionné en fixed (body level)
   → ne pousse rien, ne décale rien */
.t172b-dd {
  position: fixed;
  display: none;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.14);
  max-height: 320px;
  overflow-y: auto;
  z-index: 9999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  /* Léger fade in */
  animation: t172b-fadein 0.12s ease-out;
}
@keyframes t172b-fadein {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hint en haut */
.t172b-dd-hint {
  padding: 6px 12px;
  font-size: 10.5px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 10px 10px 0 0;
}

/* Item de suggestion */
.t172b-dd-item {
  padding: 8px 12px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background 0.12s ease;
}
.t172b-dd-item:last-child {
  border-bottom: 0;
  border-radius: 0 0 10px 10px;
}
.t172b-dd-item:hover,
.t172b-dd-item.active {
  background: rgba(15, 61, 103, 0.06);
}
.t172b-dd-item.active {
  background: rgba(15, 61, 103, 0.10);
}

/* Ligne haut : nom du produit + prix */
.t172b-dd-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.t172b-dd-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.t172b-dd-price {
  font-family: 'JetBrains Mono', 'SF Mono', 'Menlo', monospace;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--crm-or, #E65100);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* Ligne bas : référence + courte description */
.t172b-dd-bottom {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
}

/* État vide */
.t172b-dd-empty {
  padding: 18px 14px;
  text-align: center;
  color: #94a3b8;
  font-size: 12.5px;
  font-style: italic;
}
