.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-color-darker);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: background-color 0.2s ease;
}

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

.suggestion-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.suggestion-title {
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.suggestion-highlight {
  color: var(--default-color);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 4px;
}

.suggestion-type {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .search-suggestions {
    max-height: 250px;
  }
  
  .suggestion-item {
    padding: 10px 12px;
  }
  
  .suggestion-title {
    font-size: 0.85rem;
  }
  
  .suggestion-highlight {
    font-size: 0.8rem;
  }
}