/* iΦi autosuggest dropdown styles */

.iphi-dropdown {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
}

.iphi-item {
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.1s ease;
}

.iphi-item:last-child {
  border-bottom: none;
}

.iphi-item:hover,
.iphi-item[aria-selected="true"] {
  background: #f3f4f6;
}

.iphi-item-name {
  font-weight: 500;
  color: #111827;
}

.iphi-item-ean {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.iphi-item-price {
  font-size: 13px;
  font-weight: 600;
  color: #059669;
  margin-top: 4px;
}

.iphi-empty {
  padding: 16px;
  text-align: center;
  color: #6b7280;
}

/* Dark mode support */
.dark .iphi-dropdown {
  background: #262626;
  border-color: #404040;
}

.dark .iphi-item {
  border-bottom-color: #404040;
}

.dark .iphi-item:hover,
.dark .iphi-item[aria-selected="true"] {
  background: #404040;
}

.dark .iphi-item-name {
  color: #f9fafb;
}

.dark .iphi-item-ean {
  color: #9ca3af;
}
