.search-suggestions {
  display: none;
  position: fixed;
  background: #fff;
  z-index: 10001;
  max-height: none;
  overflow-y: auto;
  scrollbar-width: none;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  margin-top: 6px;
  box-sizing: border-box;
  padding: 0;
  border: none;
}

.search-suggestions::-webkit-scrollbar { display: none; }

.search-suggestions.open {
  display: block;
}

.search-sug-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.12s ease;
}

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

.search-sug-item:active {
  background: #f9f9f9;
}

.search-sug-img {
  width: 44px;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
  background: #f5f5f5;
  flex-shrink: 0;
}

.search-sug-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-sug-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-sug-prices {
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-sug-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFB800;
}

.search-sug-old-price {
  font-size: 0.7rem;
  color: #bbb;
  text-decoration: line-through;
}

.search-sug-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: #e74c3c;
  padding: 1px 5px;
  border-radius: 0;
}

.search-sug-empty {
  padding: 1.5rem 1rem;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
}

.search-sug-icon {
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-sug-icon i {
  width: 16px;
  height: 16px;
  color: #999;
}

.search-sug-item.search-sug-simple {
  padding: 9px 14px;
  gap: 10px;
}

.search-sug-item.search-sug-simple .search-sug-name {
  font-size: 0.85rem;
  font-weight: 500;
}
