/* KUNPENG FREIGHT — WhatsApp contact picker popup */
.kf-wa-picker {
  position: fixed;
  z-index: 9999;
  min-width: 240px;
  padding: 6px;
  border-radius: 14px;
  background: #0e1f3d;
  border: 1px solid rgba(62, 123, 255, 0.35);
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.kf-wa-picker.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.kf-wa-picker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}
.kf-wa-picker-item:hover {
  background: rgba(62, 123, 255, 0.14);
}
.kf-wa-picker-flag {
  font-size: 1.25rem;
  line-height: 1;
}
.kf-wa-picker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kf-wa-picker-info strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: #eaf2ff;
}
.kf-wa-picker-info em {
  font-style: normal;
  font-size: 0.85rem;
  color: #25d366;
  direction: ltr;
  unicode-bidi: isolate;
}
