/* ===============================
   LIVE SEARCH - CORE STYLES
   =============================== */

#live-search-result {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;

  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;

  max-height: 380px;
  overflow-y: auto;

  z-index: 100000;

  /* Görünürlük kontrolü */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);

  /* Animasyon */
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}

/* Açık hali */
#live-search-result.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Tek ürün satırı */
.live-search-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 12px;
  text-decoration: none;
  color: #333;

  border-bottom: 1px solid #f0f0f0;
  background: #fff;

  transition: background 0.2s ease;
}

.live-search-item:hover {
  background: #f7f7f7;
}

.live-search-item img {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.live-search-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.live-search-price {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}
